HENTAICORD API
  • 👋Welcome
  • 🔐Obtain API Token
  • ⚠️Daily API Rate Limits
  • 🦙AI Chat Completion Tokens
  • API Endpoints
    • 🔞Retrieve NSFW media
    • 🔥Chat with our unfiltered LLM
Powered by GitBook
On this page
  • Grab a list of types and categories as a JSON response
  • Retrieve a random image from the specified parameters.

Was this helpful?

  1. API Endpoints

Retrieve NSFW media

This page contains API endpoints that you can use to pull NSFW media from our huge database of images and GIFs.

Grab a list of types and categories as a JSON response

GET https://api.hentaicord.net/types-categories

This endpoint does not count towards your daily allowance. You can literally visit this endpoint link in your web browser.

{
    "code": 200,
    "message": "Successfully retrieved types and categories."
    "data": [
        { type: "hentai", categories: ["list", "of", "categories"] },
        { type: "real-porn", categories: ["list", "of", "categories"] }, 
        { type: "roleplay", categories: ["list", "of", "categories"] }
    ]
}

Retrieve a random image from the specified parameters.

GET https://api.hentaicord.net/retrieve/:type/:category

Path Parameters

Name
Type
Description

type*

String

hentai, realporn or roleplay

category*

String

One of the categories from your selected 'type'.

Headers

Name
Type
Description

Authorization*

String

Your API token

{
    "code": 200,
    "message": "Successfully retrieved content.",
    "image": "IMAGE URL WILL BE PROVIDED",
    "selected": {
        "type": "hentai", // Will be the type you chosen.
        "category": "boobs" // Will be the category you chosen.
    }
}

Last updated 3 months ago

Was this helpful?

🔞