GET
/
api
/
v1
/
emojis
curl --request GET \
  --url https://api.emojis.com/api/v1/emojis \
  --header 'Authorization: Bearer <token>'
{
  "emojis": [
    {
      "id": "F5LKv2Gttog",
      "name": "happy green dino wearing santa hat",
      "formats": {
        "png": {
          "128": "https://imgproxy.attic.sh/dT0BPRBTjUzztiQCdYSZe2sjojVeMEwlFTnVGve5EI0/rs:fit:128:128:1:1/t:1:FF00FF:false:false/pngo:false:true:256/aHR0cHM6Ly9hdHRp/Yy5zaC82MXJ3Zmoy/OTNxNGxpZzRxcG53/N2E5bTIxd3p1.png",
          "512": "https://imgproxy.attic.sh/dT0BPRBTjUzztiQCdYSZe2sjojVeMEwlFTnVGve5EI0/rs:fit:512:512:1:1/t:1:FF00FF:false:false/pngo:false:true:256/aHR0cHM6Ly9hdHRp/Yy5zaC82MXJ3Zmoy/OTNxNGxpZzRxcG53/N2E5bTIxd3p1.png"
        }
      }
    }
  ],
  "page_info": {
    "has_next_page": false,
    "end_cursor": "cursor",
    "start_cursor": "cursor"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

query
string

The query to search for.

Example:

"cat"

limit
integer

The maximum number of emojis to return.

Required range: x <= 100
Example:

50

cursor
string

The cursor to paginate from.

Response

200 - application/json

Successful response

The response is of type object.