Full-text search
Find titles with optional normalized type and exact start-year filters.
Search movies and series, browse ranked catalogs, and retrieve normalized title metadata through one focused REST API.
const response = await fetch(
"https://api.swipeformovie.com/v1/search?q=matrix",
{ headers: { Authorization: `Bearer ${apiKey}` } },
);
// response
{
"data": [{
"title": "The Matrix",
"year": 1999,
"type": "movie"
}],
"meta": { "total_results": 2 }
}Build against a small, auditable API with real schemas, exact validation rules, and copy-ready examples.
Find titles with optional normalized type and exact start-year filters.
Browse movies and series in stable vote-count order with page metadata.
Bearer API keys, public error codes, request IDs, and two-level quota handling.
Every reference page is generated from the checked-in OpenAPI contract.
Explore the API