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.
Returns a random Pepe image. If a search query is provided, it will try to match a Pepe with the given description.
Parameter | Type | Required | Description |
---|---|---|---|
search | string | No | Finds Pepes with matching descriptions |
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" } }
{ "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 } }
{ "data": { "id": 99, "url": "https://cdn.onlypepes.xyz/images/random-pepe.jpg", "description": "Random Pepe" }, "search": { "terms": "nonexistent words", "found": false } }
Retrieves a specific Pepe image by ID.
Parameter | Type | Required | Description |
---|---|---|---|
id | number | Yes | The unique ID of the Pepe image |
{ "data": { "id": 777, "url": "https://cdn.onlypepes.xyz/images/golden-pepe.jpg", "description": "Golden Rare Pepe" } }
{ "data": null }
If something goes wrong, the API returns appropriate HTTP status codes with error messages.
{ "error": "Not Found" }