v1

latestOpenAPI 3.0.3raw.githubusercontent.com2024-10-2916802.4 MB
📸 Social Media

Get my posts

The API endpoint allows a logged-in user to fetch their own posts, which can be displayed on the "My Profile" page of the frontend.

When accessing this endpoint, the logged-in user's accessToken is used to authenticate and retrieve their specific posts from the backend.

get/social-media/posts/get/my

Query parameters

pagestring
Example:1
limitstring
Example:10

Response

Get my posts

messagestring
statusCodenumber
successboolean

Example response

{
  "data": {
    "limit": 10,
    "page": 1,
    "posts": [
      {
        "__v": 0,
        "_id": "649fe0cfc4a9507d1220eefc",
        "author": {
          "__v": 0,
          "_id": "649fe0cfc4a9507d1220ec24",
          "account": {
            "_id": "649fe0cec4a9507d1220eb68",
            "avatar": {
              "_id": "649fe0cec4a9507d1220eb69",
              "localPath": "",
              "url": "https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/97.jpg"
            },
            "email": "marietta_hoeger59@gmail.com",
            "username": "joey_boyle24"
          },
          "bio": "squirrel advocate, person 🧊",
          "countryCode": "+91",
          "coverImage": {
            "_id": "649fe0cfc4a9507d1220ec23",
            "localPath": "",
            "url": "https://via.placeholder.com/800x450.png"
          },
          "createdAt": "2023-07-01T08:16:15.061Z",
          "dob": "2014-01-31T01:46:29.852Z",
          "firstName": "Arjun",
          "lastName": "Turcotte",
          "location": "Fort Lizatown, Comoros",
          "owner": "649fe0cec4a9507d1220eb68",
          "phoneNumber": "9240836201",
          "updatedAt": "2023-07-01T08:16:15.847Z"
        },
        "comments": 12,
        "content": "Enim odio hic laboriosam tempora quis.\nOdio asperiores sapiente atque repellendus sunt nesciunt quae.\nNon debitis modi aspernatur.",
        "createdAt": "2023-07-01T08:16:15.910Z",
        "images": [
          {
            "_id": "649fe0cfc4a9507d1220eefd",
            "localPath": "",
            "url": "https://loremflickr.com/640/480/food?lock=8384240500604928"
          },
          {
            "_id": "649fe0cfc4a9507d1220eefe",
            "localPath": "",
            "url": "https://loremflickr.com/640/480/food?lock=971703482056704"
          },
          {
            "_id": "649fe0cfc4a9507d1220eeff",
            "localPath": "",
            "url": "https://loremflickr.com/640/480/food?lock=4492503323508736"
          },
          {
            "_id": "649fe0cfc4a9507d1220ef00",
            "localPath": "",
            "url": "https://loremflickr.com/640/480/food?lock=4290222315536384"
          },
          {
            "_id": "649fe0cfc4a9507d1220ef01",
            "localPath": "",
            "url": "https://loremflickr.com/640/480/food?lock=3838085238358016"
          },
          {
            "_id": "649fe0cfc4a9507d1220ef02",
            "localPath": "",
            "url": "https://loremflickr.com/640/480/food?lock=3757971515375616"
          }
        ],
        "isBookmarked": false,
        "isLiked": false,
        "likes": 30,
        "tags": [
          "officia",
          "suscipit",
          "molestias",
          "accusantium"
        ],
        "updatedAt": "2023-07-01T08:16:15.910Z"
      }
    ],
    "serialNumberStartFrom": 1,
    "totalPages": 1,
    "totalPosts": 1
  },
  "message": "My posts fetched successfully",
  "statusCode": 200,
  "success": true
}