v1

latestOpenAPI 3.0.1MIT2026-07-1712915.9 KB
Posts

Create a new post

Create a new post to share something with others

post/posts

Request body

usernamestring required

Username of the post author

contentstring required

Content of the post

Example request

{
  "username": "john_doe",
  "content": "Just had an amazing hike in the mountains! #outdoorlife"
}

Response

Post created successfully

idstring uuid required

Unique identifier for the post

usernamestring required

Username of the post author

contentstring required

Content of the post

createdAtstring date-time required

Timestamp when the post was created

updatedAtstring date-time required

Timestamp when the post was last updated

likesCountinteger required

Number of likes on the post

commentsCountinteger required

Number of comments on the post

Example response

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "username": "john_doe",
  "content": "Just had an amazing hike in the mountains! #outdoorlife",
  "createdAt": "2025-06-01T10:30:00Z",
  "updatedAt": "2025-06-01T10:30:00Z",
  "likesCount": 15,
  "commentsCount": 3
}