×

Lost account access

As a part of its privacy policy, NoBleme will protect your anonymity as much as possible. This means that you will never be sent any emails that could be used to link you to your identity on the website, or asking you to provide your password. On top of that, automated password recovery systems can be used in a few nefarious ways that we would rather not have to deal with. With this context in mind, NoBleme decided to not implement an automated account recovery process.

If you have lost access to your account (forgotten username, forgotten password, or otherwise), the only way to recover that access is to go on NoBleme's NoBleme's IRC chat server and ask for a website administrator to manually reset your account's password. No need to worry about identity usurpation, there is a strict process in place that will allow the administrator to verify your identity before doing the resetting.

NOBLEME
PAGES
SOCIAL
L
FR
 
 
 

Login

NoBleme API:

API

Quotes

This part of NoBleme's API allows you to interact with the quote database.


GET /api/quotes

Retrieves a list of all quotes, in reverse chronological order of addition to the quote database.

Parameters

language - string - optional

Return quotes in the specified ISO 639-1 language (ex. 'en').


user_id - int - optional

Return quotes including the specified user.


search - string - optional

Return quotes which contain the specified string in their body.


year - int - optional

Return quotes added to the database in a specific year (ex. '2005').


nsfw - int - optional

Return only SFW (0) or NSFW (1) quotes.

Response schema
{
  "quotes": [
    {
      "id": string,
      "is_nsfw": bool,
      "language": string,
      "link": string,
      "body": string,
      "added_on": string,
      "users": [
        {
          "id": string,
          "username": string,
          "link": string
        },
      ]
    },
  ]
}

GET /api/quote/{id}

Retrieves a quote with the specified ID.

Parameters

id - int

The desired quote's ID.

Response schema
{
  "quote": {
    "id": string,
    "is_nsfw": bool,
    "language": string,
    "link": string,
    "body": string,
    "added_on": string,
    "users": [
      {
        "id": string,
        "username": string,
        "link": string
      },
    ]
  }
}

GET /api/quote/random

Retrieves a random quote.

Parameters

language - string - optional

Choose from quotes in the specified ISO 639-1 language (ex. 'en').


user_id - int - optional

Choose from quotes including the specified user.


nsfw - int - optional

Choose solely from SFW (0) or NSFW (1) quotes.


year - int - optional

Choose from quotes added to the database in a specific year (ex. '2005').

Response schema
{
  "quote": {
    "id": string,
    "is_nsfw": bool,
    "language": string,
    "link": string,
    "body": string,
    "added_on": string,
    "users": [
      {
        "id": string,
        "username": string,
        "link": string
      },
    ]
  }
}