Endpoints
GET

/raccoon

Random Raccoon Image

GET

/raccoon/:id

Specific Raccoon by ID

GET

/video

Random Raccoon Video

GET

/meme

Random Raccoon Meme

GET

/meme/:id

Specific Meme by ID

GET

/fact

Random Raccoon Fact

GET

/stats

API Statistics

GET

/raccoons

List All Raccoons

GET

/memes

List All Memes

Random Raccoon Image

GET
/raccoon

Description

Get a random raccoon image. Returns image by default, or JSON metadata with ?json=true parameter.

Parameters

daily
boolean

Get the same image for the entire day

Example:?daily=true
hourly
boolean

Get the same image for the entire hour

Example:?hourly=true
weekly
boolean

Get the same image for the entire week

Example:?weekly=true
json
boolean

Return JSON metadata instead of media

Example:?json=true

Response

{
  "success": true,
  "data": {
    "url": "https://api.racc.lol/raccoon/42",
    "size": 245760,
    "contentType": "image/jpeg"
  }
}

Examples

https://api.racc.lol/raccoon
https://api.racc.lol/raccoon?daily=true
https://api.racc.lol/raccoon?json=true