diff --git a/api_data.js b/api_data.js index bad714d..bba3197 100644 --- a/api_data.js +++ b/api_data.js @@ -1,4 +1,177 @@ define({ "api": [ + { + "type": "get", + "url": "/eporner/get?id=:id", + "title": "Get eporner", + "name": "Get_eporner", + "group": "eporner", + "description": "

Get a eporner video based on id

", + "parameter": { + "fields": { + "Parameter": [ + { + "group": "Parameter", + "type": "String", + "optional": false, + "field": "id", + "description": "

Video ID

" + } + ] + } + }, + "success": { + "examples": [ + { + "title": "Success-Response:", + "content": "HTTP/1.1 200 OK\nHTTP/1.1 400 Bad Request", + "type": "json" + } + ] + }, + "examples": [ + { + "title": "curl", + "content": "curl -i https://lust.scathach.id/eporner/get?id=ibvqvezXzcs", + "type": "curl" + }, + { + "title": "JS/TS", + "content": "import axios from \"axios\"\n\naxios.get(\"https://lust.scathach.id/eporner/get?id=ibvqvezXzcs\")\n.then(res => console.log(res.data))\n.catch(err => console.error(err))", + "type": "js" + }, + { + "title": "Python", + "content": "import aiohttp\nasync with aiohttp.ClientSession() as session:\n async with session.get(\"https://lust.scathach.id/eporner/get?id=ibvqvezXzcs\") as resp:\n print(await resp.json())", + "type": "python" + } + ], + "version": "0.0.0", + "filename": "src/controller/eporner/epornerGet.ts", + "groupTitle": "eporner", + "sampleRequest": [ + { + "url": "https://lust.scathach.id/eporner/get?id=:id" + } + ] + }, + { + "type": "get", + "url": "/eporner/random", + "title": "Get random eporner", + "name": "Get_random_eporner", + "group": "eporner", + "description": "

Get a random eporner video

", + "parameter": { + "fields": { + "Parameter": [ + { + "group": "Parameter", + "type": "String", + "optional": false, + "field": "id", + "description": "

Video ID

" + } + ] + } + }, + "success": { + "examples": [ + { + "title": "Success-Response:", + "content": "HTTP/1.1 200 OK\nHTTP/1.1 400 Bad Request", + "type": "json" + } + ] + }, + "examples": [ + { + "title": "curl", + "content": "curl -i https://lust.scathach.id/eporner/random", + "type": "curl" + }, + { + "title": "JS/TS", + "content": "import axios from \"axios\"\n\naxios.get(\"https://lust.scathach.id/eporner/random\")\n.then(res => console.log(res.data))\n.catch(err => console.error(err))", + "type": "js" + }, + { + "title": "Python", + "content": "import aiohttp\nasync with aiohttp.ClientSession() as session:\n async with session.get(\"https://lust.scathach.id/eporner/random\") as resp:\n print(await resp.json())", + "type": "python" + } + ], + "version": "0.0.0", + "filename": "src/controller/eporner/epornerRandom.ts", + "groupTitle": "eporner", + "sampleRequest": [ + { + "url": "https://lust.scathach.id/eporner/random" + } + ] + }, + { + "type": "get", + "url": "/eporner/search", + "title": "Search eporner videos", + "name": "Search_eporner", + "group": "eporner", + "description": "

Search eporner videos

", + "parameter": { + "fields": { + "Parameter": [ + { + "group": "Parameter", + "type": "String", + "optional": false, + "field": "key", + "description": "

Keyword to search

" + }, + { + "group": "Parameter", + "type": "Number", + "optional": true, + "field": "page", + "defaultValue": "1", + "description": "

Page number

" + } + ] + } + }, + "success": { + "examples": [ + { + "title": "Success-Response:", + "content": "HTTP/1.1 200 OK\nHTTP/1.1 400 Bad Request", + "type": "json" + } + ] + }, + "examples": [ + { + "title": "curl", + "content": "curl -i https://lust.scathach.id/eporner/search?key=milf\ncurl -i https://lust.scathach.id/eporner/search?key=milf&page=2", + "type": "curl" + }, + { + "title": "JS/TS", + "content": "import axios from \"axios\"\n\naxios.get(\"https://lust.scathach.id/eporner/search?key=milf\")\n.then(res => console.log(res.data))\n.catch(err => console.error(err))", + "type": "js" + }, + { + "title": "Python", + "content": "import aiohttp\nasync with aiohttp.ClientSession() as session:\n async with session.get(\"https://lust.scathach.id/eporner/search?key=milf\") as resp:\n print(await resp.json())", + "type": "python" + } + ], + "version": "0.0.0", + "filename": "src/controller/eporner/epornerSearch.ts", + "groupTitle": "eporner", + "sampleRequest": [ + { + "url": "https://lust.scathach.id/eporner/search" + } + ] + }, { "type": "get", "url": "/pornhub/get?id=:id", @@ -440,10 +613,10 @@ define({ "api": [ { "type": "get", "url": "/xhamster/random", - "title": "Get random xhamster", + "title": "Get random xhamster video", "name": "Get_random_xhamster", "group": "xhamster", - "description": "

Get a random xhamster video

", + "description": "

Get a random xhamster video from the list of newest videos.

", "success": { "examples": [ { diff --git a/api_data.json b/api_data.json index 1ea98d1..ee6540c 100644 --- a/api_data.json +++ b/api_data.json @@ -1,4 +1,177 @@ [ + { + "type": "get", + "url": "/eporner/get?id=:id", + "title": "Get eporner", + "name": "Get_eporner", + "group": "eporner", + "description": "

Get a eporner video based on id

", + "parameter": { + "fields": { + "Parameter": [ + { + "group": "Parameter", + "type": "String", + "optional": false, + "field": "id", + "description": "

Video ID

" + } + ] + } + }, + "success": { + "examples": [ + { + "title": "Success-Response:", + "content": "HTTP/1.1 200 OK\nHTTP/1.1 400 Bad Request", + "type": "json" + } + ] + }, + "examples": [ + { + "title": "curl", + "content": "curl -i https://lust.scathach.id/eporner/get?id=ibvqvezXzcs", + "type": "curl" + }, + { + "title": "JS/TS", + "content": "import axios from \"axios\"\n\naxios.get(\"https://lust.scathach.id/eporner/get?id=ibvqvezXzcs\")\n.then(res => console.log(res.data))\n.catch(err => console.error(err))", + "type": "js" + }, + { + "title": "Python", + "content": "import aiohttp\nasync with aiohttp.ClientSession() as session:\n async with session.get(\"https://lust.scathach.id/eporner/get?id=ibvqvezXzcs\") as resp:\n print(await resp.json())", + "type": "python" + } + ], + "version": "0.0.0", + "filename": "src/controller/eporner/epornerGet.ts", + "groupTitle": "eporner", + "sampleRequest": [ + { + "url": "https://lust.scathach.id/eporner/get?id=:id" + } + ] + }, + { + "type": "get", + "url": "/eporner/random", + "title": "Get random eporner", + "name": "Get_random_eporner", + "group": "eporner", + "description": "

Get a random eporner video

", + "parameter": { + "fields": { + "Parameter": [ + { + "group": "Parameter", + "type": "String", + "optional": false, + "field": "id", + "description": "

Video ID

" + } + ] + } + }, + "success": { + "examples": [ + { + "title": "Success-Response:", + "content": "HTTP/1.1 200 OK\nHTTP/1.1 400 Bad Request", + "type": "json" + } + ] + }, + "examples": [ + { + "title": "curl", + "content": "curl -i https://lust.scathach.id/eporner/random", + "type": "curl" + }, + { + "title": "JS/TS", + "content": "import axios from \"axios\"\n\naxios.get(\"https://lust.scathach.id/eporner/random\")\n.then(res => console.log(res.data))\n.catch(err => console.error(err))", + "type": "js" + }, + { + "title": "Python", + "content": "import aiohttp\nasync with aiohttp.ClientSession() as session:\n async with session.get(\"https://lust.scathach.id/eporner/random\") as resp:\n print(await resp.json())", + "type": "python" + } + ], + "version": "0.0.0", + "filename": "src/controller/eporner/epornerRandom.ts", + "groupTitle": "eporner", + "sampleRequest": [ + { + "url": "https://lust.scathach.id/eporner/random" + } + ] + }, + { + "type": "get", + "url": "/eporner/search", + "title": "Search eporner videos", + "name": "Search_eporner", + "group": "eporner", + "description": "

Search eporner videos

", + "parameter": { + "fields": { + "Parameter": [ + { + "group": "Parameter", + "type": "String", + "optional": false, + "field": "key", + "description": "

Keyword to search

" + }, + { + "group": "Parameter", + "type": "Number", + "optional": true, + "field": "page", + "defaultValue": "1", + "description": "

Page number

" + } + ] + } + }, + "success": { + "examples": [ + { + "title": "Success-Response:", + "content": "HTTP/1.1 200 OK\nHTTP/1.1 400 Bad Request", + "type": "json" + } + ] + }, + "examples": [ + { + "title": "curl", + "content": "curl -i https://lust.scathach.id/eporner/search?key=milf\ncurl -i https://lust.scathach.id/eporner/search?key=milf&page=2", + "type": "curl" + }, + { + "title": "JS/TS", + "content": "import axios from \"axios\"\n\naxios.get(\"https://lust.scathach.id/eporner/search?key=milf\")\n.then(res => console.log(res.data))\n.catch(err => console.error(err))", + "type": "js" + }, + { + "title": "Python", + "content": "import aiohttp\nasync with aiohttp.ClientSession() as session:\n async with session.get(\"https://lust.scathach.id/eporner/search?key=milf\") as resp:\n print(await resp.json())", + "type": "python" + } + ], + "version": "0.0.0", + "filename": "src/controller/eporner/epornerSearch.ts", + "groupTitle": "eporner", + "sampleRequest": [ + { + "url": "https://lust.scathach.id/eporner/search" + } + ] + }, { "type": "get", "url": "/pornhub/get?id=:id", @@ -440,10 +613,10 @@ { "type": "get", "url": "/xhamster/random", - "title": "Get random xhamster", + "title": "Get random xhamster video", "name": "Get_random_xhamster", "group": "xhamster", - "description": "

Get a random xhamster video

", + "description": "

Get a random xhamster video from the list of newest videos.

", "success": { "examples": [ { diff --git a/api_project.js b/api_project.js index 50f42b2..8914d43 100644 --- a/api_project.js +++ b/api_project.js @@ -9,7 +9,7 @@ define({ "apidoc": "0.3.0", "generator": { "name": "apidoc", - "time": "2023-04-19T19:40:34.846Z", + "time": "2026-03-12T10:51:31.522Z", "url": "https://apidocjs.com", "version": "0.29.0" } diff --git a/api_project.json b/api_project.json index 8673ef4..46a3b20 100644 --- a/api_project.json +++ b/api_project.json @@ -9,7 +9,7 @@ "apidoc": "0.3.0", "generator": { "name": "apidoc", - "time": "2023-04-19T19:40:34.846Z", + "time": "2026-03-12T10:51:31.522Z", "url": "https://apidocjs.com", "version": "0.29.0" }