### GET /intro Source: https://api.introdb.app/index Retrieves the aggregated intro start and end times for a specific TV show episode. This data is crowdsourced from community submissions. ```APIDOC ## GET /intro ### Description Returns the aggregated intro start/end times for a specific TV show episode. Crowdsourced data from community submissions. ### Method GET ### Endpoint /intro ### Parameters #### Query Parameters - **imdb_id** (string) - Required - The IMDb ID of the TV show. - **season** (integer) - Required - The season number. - **episode** (integer) - Required - The episode number. ### Request Example ``` curl 'http://api.introdb.app/intro?imdb_id=&season=1&episode=1' ``` ### Response #### Success Response (200) - **imdb_id** (string) - The IMDb ID of the TV show. - **season** (integer) - The season number. - **episode** (integer) - The episode number. - **start_ms** (integer) - The start time of the intro in milliseconds. - **end_ms** (integer) - The end time of the intro in milliseconds. - **confidence** (integer) - The confidence score of the timestamp. - **submission_count** (integer) - The number of submissions for this timestamp. #### Response Example ```json { "imdb_id": "string", "season": 1, "episode": 1, "start_ms": 1, "end_ms": 1, "confidence": 1, "submission_count": 1 } ``` #### Error Response (400) Invalid request parameters. #### Error Response (404) Intro not found for this episode. ``` -------------------------------- ### Get Intro Timestamps for an Episode (Shell Curl) Source: https://api.introdb.app/index Retrieves aggregated intro start and end times for a specific TV show episode using its IMDb ID, season, and episode number. Requires 'imdb_id', 'season', and 'episode' as query parameters. Returns a JSON object with timestamp details or error messages. ```shell curl 'http://api.introdb.app/intro?imdb_id=&season=1&episode=1' ``` -------------------------------- ### Intro Timestamp Schema (JSON) Source: https://api.introdb.app/index Defines the structure of the JSON response when successfully retrieving intro timestamps for an episode. Includes IMDb ID, season, episode, start and end times in milliseconds, confidence score, and submission count. ```json { "imdb_id": "string", "season": 1, "episode": 1, "start_ms": 1, "end_ms": 1, "confidence": 1, "submission_count": 1 } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.