SwipeForMovie API
Build fast movie and series discovery with a focused catalog API.
The SwipeForMovie Catalog API provides normalized title search, ranked movie and series lists, and exact title lookup through a small REST surface.
What you can build
- Search across movies and series with optional type and year filters.
- Browse ranked movie and series catalogs with predictable page metadata.
- Retrieve a complete normalized title record by title identifier.
- Check public service and catalog health without an API key.
API at a glance
| Detail | Value |
|---|---|
| Production base URL | https://api.swipeformovie.com |
| Format | JSON over HTTPS |
| Authentication | Authorization: Bearer mov_live_... on every /v1/* route |
| Pagination | One-based page plus limit from 1 to 20 |
| Success envelope | { "data": [], "meta": {} } |
| Error envelope | { "error": { "code", "message", "request_id" } } |
First request
curl "https://api.swipeformovie.com/v1/search?q=matrix&type=movie" \
-H "Authorization: Bearer $SWIPEFORMOVIE_API_KEY"The Getting Started guide covers the complete setup. For every parameter and response field, use the API Reference.