GET
/
api
/
posts
/
{id}
cURL
curl --request GET \
  --url https://kyvornapi.peretas.tech/api/posts/{id}
{
  "id": "<string>",
  "author": {
    "id": "<string>",
    "username": "<string>",
    "handle": "<string>",
    "verified": true,
    "dev": true,
    "admin": true,
    "respected": true,
    "avatar": "<string>"
  },
  "title": "<string>",
  "content": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "scriptInfo": {
    "game": "<string>",
    "detection": "<string>",
    "type": "<string>",
    "pricing": "<string>",
    "bannerUrl": "<string>"
  },
  "stats": {
    "likes": 123
  },
  "scriptId": "<string>",
  "liked": true,
  "scriptContent": "<string>"
}

Learn more about implementing Kyvorn into your UI

Path Parameters

id
string
required

ID of the post to fetch

Response

Successful response

The response is of type object.