API Documentation

Learn how to interact with our API.

Overview

Our API allows you to access a wide range of data related to celebrities, movies, and more. Use our API to integrate this data into your applications or websites.

Authentication

To use the API, you need an API key. You can obtain your API key by signing up for an account and subscribing to one of our plans.

GET /api/v1/auth?apikey=YOUR_API_KEY

Include your API key in the `Authorization` header for all requests.

Endpoints

Get All Celebrities

Retrieves a list of all celebrities in our database.

GET /api/v1/celebrities

Response:

{ "status": "success", "data": [ { "id": 1, "name": "John Doe", "profession": "Actor" }, { "id": 2, "name": "Jane Smith", "profession": "Singer" } ] }

Get Movie Details

Retrieves details for a specific movie by its ID.

GET /api/v1/movies/{id}

Response:

{ "status": "success", "data": { "id": 1, "title": "The Great Movie", "release_date": "2024-01-01", "cast": [ "John Doe", "Jane Smith" ] } }

Rate Limits

To ensure fair usage, our API is rate-limited based on your subscription plan. Please refer to your plan's details for specific limits.

Support

If you encounter any issues or have questions, please contact our support team via the Contact Us page.