Alo amplus infit curso
Director: Ms. Marcella Ratke
2006 · 146 min
science-fictionadventurethriller
★ 5.6 (517720)
Adicio consequuntur decerno turpis. Sumptus tripudio tergo territo. Tero bos vociferor terebro tenuis virgo adflicto.
Overview
movies / #133
Director: Ms. Marcella Ratke
2006 · 146 min
★ 5.6 (517720)
Adicio consequuntur decerno turpis. Sumptus tripudio tergo territo. Tero bos vociferor terebro tenuis virgo adflicto.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/movies/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/movies/133" ); const movy = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/movies.d.ts https://example-data.com/types/movies.d.ts
import type { Movy } from "./types/movies";
const res = await fetch(
"https://example-data.com/api/v1/movies/133"
);
const movy = (await res.json()) as Movy; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/movies/133"
)
movie = res.json() Response
{
"id": 133,
"title": "Alo amplus infit curso",
"slug": "alo-amplus-infit-curso-133",
"year": 2006,
"runtimeMinutes": 146,
"director": "Ms. Marcella Ratke",
"cast": [
"Don Rutherford",
"Wade Larkin",
"Wade Kreiger Jr.",
"Terri Hirthe",
"Mr. Brandon Hane",
"Lora Armstrong",
"Patti Bruen",
"Ella Gibson"
],
"genres": [
"science-fiction",
"adventure",
"thriller"
],
"language": "Hindi",
"plot": "Adicio consequuntur decerno turpis. Sumptus tripudio tergo territo. Tero bos vociferor terebro tenuis virgo adflicto.",
"posterUrl": "https://picsum.photos/seed/movie-133/400/600",
"rating": 5.6,
"ratingCount": 517720,
"createdAt": "2025-10-20T13:17:32.707Z"
}