onlypepes
Toggle navigation menu

API Documentation

The API is public, free, limitless and does not require API keys. The response is always a JSON. The API does not return the image itself, but an URL from the CDN where the image is hosted.

Available endpoints

Get random pepes
Get pepe by ID

Get random pepes

Get one or more random pepes

Endpoint

GET

https://api.onlypepes.xyz/v1/pepe

Required Parameters

No required parameters

Optional Parameters

limit

The amount of pepes to receive. Default value: '1'

search

Filter pepes by text in the pepe's description. Default value: ''

Sample Response

https://api.onlypepes.xyz/v1/pepe
Try it out
{
    "result": [
        {
            "id": "qfamlmqc",
            "url": "https://cdn.onlypepes.xyz/images/qfamlmqc.jpg",
            "description": "In this playful meme featuring Pepe the Frog, the iconic amphibian strikes a humorous pose, sipping from a cup with an expression that blends confusion and nonchalance. Set against a vibrant yellow backdrop, this whimsical portrayal captures the essence of internet culture, perfectly encapsulating relatable vibes of laziness and contemplation that resonate with meme enthusiasts everywhere."
        }
    ],
    "status": "success"
}

Get pepe by ID

Retrieve a specific Pepe by its unique ID.

Endpoint

GET

https://api.onlypepes.xyz/v1/pepe/{id}

Required Parameters

id

The unique identifier of the Pepe you want to retrieve. This parameter is included in the URL path.

Optional Parameters

No optional parameters

Sample Response

https://api.onlypepes.xyz/v1/pepe/bainrvoz
Try it out
{
    "result": {
        "id": "bainrvoz",
        "url": "https://cdn.onlypepes.xyz/images/bainrvoz.jpg",
        "description": "In this striking image of Pepe the Frog, his wide, expressive eyes capture a blend of frustration and resolve, perfectly embodying the meme's humorous yet relatable undertones. With his signature green skin and exaggerated features, Pepe's classic look transcends simple cartoon charm, evoking feelings of both empathy and amusement that resonate across countless internet moments."
    },
    "status": "success"
}
love-pepe