🐸 OnlyPepes API - Free the Pepes!

Pepe API

Welcome to the OnlyPepes API – a carefully curated collection of the finest Pepe images on the internet. Use this API to fetch random Pepes, find specific ones, and bask in the beauty of the most legendary meme of all time.

📌 Endpoints

GET /pepe

Returns a random Pepe image. If a search query is provided, it will try to match a Pepe with the given description.

🔎 Query Parameters

Parameter Type Required Description
search string No Finds Pepes with matching descriptions

📤 Response

Returns a JSON object with a Pepe image and optional search metadata.

{
  "data": {
    "id": 42,
    "url": "https://cdn.onlypepes.xyz/images/rare-smiling-pepe.jpg",
    "description": "Rare smiling Pepe"
  }
}
        

🤔 Example with Search

{
  "data": {
    "id": 777,
    "url": "https://cdn.onlypepes.xyz/images/sad-pepe.jpg",
    "description": "Sad Pepe staring at the rain"
  },
  "search": {
    "terms": "sad rain",
    "found": true
  }
}
        

🔄 Example When No Match is Found

{
  "data": {
    "id": 99,
    "url": "https://cdn.onlypepes.xyz/images/random-pepe.jpg",
    "description": "Random Pepe"
  },
  "search": {
    "terms": "nonexistent words",
    "found": false
  }
}
        

GET /pepe/:id

Retrieves a specific Pepe image by ID.

🆔 Path Parameters

Parameter Type Required Description
id number Yes The unique ID of the Pepe image

📤 Response

{
  "data": {
    "id": 777,
    "url": "https://cdn.onlypepes.xyz/images/golden-pepe.jpg",
    "description": "Golden Rare Pepe"
  }
}
        

🚫 Not Found Example

{
  "data": null
}
        

⚠️ Error Handling

If something goes wrong, the API returns appropriate HTTP status codes with error messages.

{
  "error": "Not Found"
}