Fufufafapi

Fufufafa's quotes in RESTful APIs

API Usage

Lists of all quotes

Lists all fufufafa quotes in an array

GET/api

Reponse

// GET /api
[
  {
    "id": 418,
    "content": Kalo kata panasbung, borobudur itu berhala,
    "datetime": "1516340658000",
    "doksli": "https://m.kaskus.co.id/show_post/5a6185b2e052276d128b4570",
    "image_url": "https://npvb6fi2oc.ufs.sh/f/14yPIqSXnAiOSK4WdBab4hEJd8VTXzrAk2ca5RKD9HQN3xY6"
  },
]
              

Search Quotes

Search quotes with specific keywords with ?content param

GET/api?content=<keyword>

Reponse

// GET /api?content=om wowo
[
  {
    "id": 5,
    "content": "Gw baru nyadar kalo fotonya om wowo naik sapi",
    "datetime": "1399911383000",
    "doksli": "https://m.kaskus.co.id/show_post/5370f3d7a2cb17c4268b4569",
    "image_url": "https://npvb6fi2oc.ufs.sh/f/14yPIqSXnAiO3V6Dd2NqWg2mjMz8kSuN0LPDEblfFIB1TZC7"
  },
]
              

Quotes by ID

Get specific quotes by using its ID's

GET/api/<id>

Reponse

// GET /api/<id>
{
  "id": 475,
  "content": "Lulusnya kapan, kampusnya dimana, tau2 jadi alumni",
  "datetime": "1511309505000",
  "doksli": "https://m.kaskus.co.id/show_post/5a14c0c1a2c06e253e8b4569",
  "image_url": "https://npvb6fi2oc.ufs.sh/f/14yPIqSXnAiOrC1rGmgbF9SR6owYev5mZqk1IxMnGTuyNiDH"
}
              

Random quotes

Randomly select one of the available quotes and forward it to /api/<id>

GET/api/random

Reponse

// GET /api/random (302 redirected)
{
  "id": 69,
  "content": "Banjir gpp yg penting gubernurnya seiman",
  "datetime": "1556511553000",
  "doksli": "https://m.kaskus.co.id/show_post/5cc67b41a2d1954236751c50",
  "image_url": "https://npvb6fi2oc.ufs.sh/f/14yPIqSXnAiOKOGsJeMzHV4hcqn1BIUR9yFgWxY0tjOGm5QA"
}