Skip to main content
GET
/
integration
/
business-api
/
posts
Get Business Posts
curl --request GET \
  --url https://api.willro.com/api/v1/integration/business-api/posts \
  --header 'x-api-key: <api-key>'
{
  "links": {
    "self": "/api/v1/integration/business-api/posts"
  },
  "pagination": {
    "page": 1,
    "limit": 10,
    "totalItems": 8,
    "totalPages": 1
  },
  "data": [
    {
      "author": {
        "name": "Willro update",
        "picture": "https://ik.imagekit.io/willro/author.png",
        "username": "willro.com"
      },
      "content": "This is a sample feed post with images and location!",
      "views": 0,
      "layout": "CLASSIC",
      "createdAt": "2025-07-10T22:18:55.547Z",
      "reactions": 0,
      "topReactions": [
        "LOVE"
      ],
      "comments": 0,
      "shares": 0,
      "location": "Cox's Bazar",
      "medias": [
        {
          "id": "68703c4f8eb295fad8dc0292",
          "url": "https://example.com/image1.jpg",
          "thumbnailUrl": "https://example.com/thumb1.jpg",
          "type": "IMAGE",
          "fileName": "image1.jpg"
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Use this API Key: willro_live_sk_95ad4a1e-48ac-4872-ae02-0d40072b60bf_6b7ec4b3af7911a65ee1c3a5ce3fe84b8c2e34136ca71030

Query Parameters

limit
integer
default:10

Number of posts per page.

page
integer
default:1

Page number.

Response

Posts retrieved.

pagination
object
data
object[]
Example:
[
{
"author": {
"name": "Willro update",
"picture": "https://ik.imagekit.io/willro/author.png",
"username": "willro.com"
},
"content": "This is a sample feed post with images and location!",
"views": 0,
"layout": "CLASSIC",
"createdAt": "2025-07-10T22:18:55.547Z",
"reactions": 0,
"topReactions": ["LOVE"],
"comments": 0,
"shares": 0,
"location": "Cox's Bazar",
"medias": [
{
"id": "68703c4f8eb295fad8dc0292",
"url": "https://example.com/image1.jpg",
"thumbnailUrl": "https://example.com/thumb1.jpg",
"type": "IMAGE",
"fileName": "image1.jpg"
}
]
}
]