@extends('site.layout') @section('title', 'API Docs - Dewemoji') @section('content')

API Docs

Current extension-compatible endpoints exposed by the rebuild app.

Base URL

{{ url('/') }}/v1

Endpoints

Example: emojis

GET /v1/emojis?q=love&category=Smileys%20%26%20Emotion&page=1&limit=20

Example response

{
  "items": [
    {
      "emoji": "😀",
      "name": "grinning face",
      "slug": "grinning-face",
      "category": "Smileys & Emotion",
      "subcategory": "face-smiling",
      "supports_skin_tone": false,
      "summary": "A happy smiling face."
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 20
}

Try it quickly

Open categories JSON · Open emojis JSON

@endsection