Skip to main content
GET
/
api
/
v1
/
posts
/
{id}
Get a single post
curl --request GET \
  --url https://mallary.ai/api/v1/posts/{id} \
  --header 'Authorization: <api-key>'
{
  "status": "ok",
  "data": {
    "post": {
      "id": 123,
      "message": "<string>",
      "platforms": [
        "<string>"
      ],
      "media": [
        {}
      ],
      "status": "queued",
      "source": "dashboard",
      "scheduled_at": "2023-11-07T05:31:56Z",
      "posted_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "results": [
        {
          "platform": "<string>",
          "success": true,
          "platform_post_id": "<string>",
          "error_message": "<string>",
          "created_at": "2023-11-07T05:31:56Z"
        }
      ],
      "analytics": {}
    }
  }
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer {api_key}

Path Parameters

id
integer
required

Response

Post found

status
enum<string>
Available options:
ok
data
object