### GET /v1/details/{releasename} Source: https://api.srrdb.com/v1/docs/index Retrieves detailed information about a specific release. The releasename should be a URL-encoded string representing the release. ```APIDOC ## GET /v1/details/{releasename} ### Description Retrieves detailed information about a specific release. ### Method GET ### Endpoint /v1/details/{releasename} ### Parameters #### Path Parameters - **releasename** (string) - Required - The URL-encoded name of the release to get details for. ### Request Example ``` GET https://api.srrdb.com/v1/details/Harry.Potter.And.The.Chamber.Of.Secrets.2002.DVDRip.XViD-iNTERNAL-TDF ``` ### Response #### Success Response (200) - **(Object)** - Contains detailed fields about the release. Specific fields are not detailed in the source. #### Response Example ```json { "example": "response body" } ``` ``` -------------------------------- ### GET /v1/nfo/{releasename} Source: https://api.srrdb.com/v1/docs/index Retrieves the NFO file content for a specific release. The releasename should be a URL-encoded string. ```APIDOC ## GET /v1/nfo/{releasename} ### Description Retrieves the NFO file content for a specific release. ### Method GET ### Endpoint /v1/nfo/{releasename} ### Parameters #### Path Parameters - **releasename** (string) - Required - The URL-encoded name of the release to get the NFO for. ### Request Example ``` GET https://api.srrdb.com/v1/nfo/Harry.Potter.And.The.Chamber.Of.Secrets.2002.DVDRip.XViD-iNTERNAL-TDF ``` ### Response #### Success Response (200) - **(String)** - The content of the NFO file. #### Response Example ```json { "example": "response body" } ``` ``` -------------------------------- ### GET /v1/search/{searchstring} Source: https://api.srrdb.com/v1/docs/index Searches for releases based on a provided search string. The search string can include various keywords and values. ```APIDOC ## GET /v1/search/{searchstring} ### Description Searches for releases based on a provided search string. The search string can include various keywords and values. ### Method GET ### Endpoint /v1/search/{searchstring} ### Parameters #### Path Parameters - **searchstring** (string) - Required - The string to search for. Can include keywords like `category`, `foreign`, `imdb`, `group`, `order`, `archive-crc`, etc. See 'Available search keywords' below. ### Request Example ``` # Example 1: Search for 'harry potter' with Xvid category and no foreign content GET https://api.srrdb.com/v1/search/harry/potter/category:xvid/foreign:no # Example 2: Search by IMDb ID GET https://api.srrdb.com/v1/search/imdb:0295297 # Example 3: Search by group and order by date descending GET https://api.srrdb.com/v1/search/group:LOL/order:date-desc # Example 4: Search by release name GET https://api.srrdb.com/v1/search/r:Harry.Potter.And.The.Chamber.Of.Secrets.2002.DVDRip.XViD-iNTERNAL-TDF # Example 5: Search by archive CRC GET https://api.srrdb.com/v1/search/archive-crc:0053CA13 # Example 6: Search by country and language, order by date ascending GET https://api.srrdb.com/v1/search/country:Belgium/language:Dutch/order:date-asc ``` ### Available search keywords: * r * date * nfo * srs * foreign * confirmed * rarhash * category * imdb * start * archive-crc * archive-size * isdbhash * lower * endorstartwithdot * firstupper * compressed * word * order * skip * skipr * store-real-filename * store-real-crc ### Response #### Success Response (200) - **(Array)** - A list of release objects matching the search criteria. Specific fields are not detailed in the source. #### Response Example ```json { "example": "response body" } ``` ``` -------------------------------- ### GET /v1/imdb/{releasename} Source: https://api.srrdb.com/v1/docs/index Retrieves IMDb details related to a specific release. The releasename should be a URL-encoded string. ```APIDOC ## GET /v1/imdb/{releasename} ### Description Retrieves IMDb details related to a specific release. ### Method GET ### Endpoint /v1/imdb/{releasename} ### Parameters #### Path Parameters - **releasename** (string) - Required - The URL-encoded name of the release to get IMDb details for. ### Request Example ``` GET https://api.srrdb.com/v1/imdb/Harry.Potter.And.The.Chamber.Of.Secrets.2002.DVDRip.XViD-iNTERNAL-TDF ``` ### Response #### Success Response (200) - **(Object)** - Contains IMDb-related fields. Specific fields are not detailed in the source. #### Response Example ```json { "example": "response body" } ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.