Postly
  1. Posts
Postly
  • Overview
  • Workspaces
    • Fetch workspaces
      GET
  • Socials
    • Fetch socials
      GET
  • Files
    • Upload a file
      POST
    • Fetch files
      GET
    • Delete a file
      DELETE
  • Posts
    • Create a post
      POST
    • Update a post
      POST
    • Fetch a post
      GET
    • Delete a post
      DELETE
    • Fetch posts
      GET
  1. Posts

Fetch posts

GET
/posts
Fetch posts

Request

Authorization
API Key
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
or
Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://openapi.postly.ai/v1/posts?workspaceId&skip' \
--header 'X-API-KEY: <api-key>'
Response Response Example
[
    {
        "_id": "string",
        "text": "string",
        "media": [
            {
                "url": "string",
                "type": "string"
            }
        ],
        "one_off_schedule": {
            "one_off_date": "string",
            "time": "string",
            "timezone": "string"
        },
        "recurring_schedule": {
            "expression": "string",
            "start_date": "string",
            "end_date": "string",
            "time": "string",
            "timezone": "string",
            "week_days": {
                "num": "string",
                "value": true
            },
            "day_of_month": 0,
            "rate_value": 0,
            "rate_unit": "string"
        },
        "created_at": "string",
        "updated_at": "string"
    }
]
Modified at 2025-11-12 16:12:05
Previous
Delete a post
Built with