Page cover

🔞Retrieve NSFW media

This page explains how you can fetch NSFW media in the form of images and GIFs.

Fetch available types and categories

GET https//api.hentaicord.net/image/types

Fetch arrays of available types and categories.

Headers

Name
Value

Authorization

Your token here.

Name
Value

Authorization

Your token here.

Response

{
    code: 200,
    message: "Here's an array of our available types and their associated categories.",
    data: [
      { type1: [ "category1", "category2", "category3" ] },
      { type2: [ "category4", "category5", "category6" ] },
      // And so forth...
    ],
    requestsLeft: 499, // Requests you have remaining.
    refreshIn: UnixTimestamp // Time until midnight (UK / London timezone)
}

Fetch random image from specified type and category

GET https//api.hentaicord.net/image/fetch/:type/:category

Headers

Name
Value

Authorization

Your token here.

Response

Last updated