Blog

Get a blog post by slug

Returns a published blog post by slug

GET
/v1/blog/{slug}
X-API-KEY<token>

User API key. Get your API key from the dashboard at /settings/developer

In: header

Path Parameters

slugstring

Blog post slug

Response Body

curl -X GET "https://api.emudevs.gg/v1/blog/string"
{
  "id": "string",
  "title": "string",
  "slug": "string",
  "description": "string",
  "content": "string",
  "image": "string",
  "category": "string",
  "published": true,
  "featured": true,
  "publishedAt": "string",
  "authors": [
    {
      "id": "string",
      "username": "string",
      "displayName": "string",
      "avatar": "string",
      "role": "string"
    }
  ],
  "createdAt": "string",
  "updatedAt": "string"
}
Empty