List posts
GET
/posts
const url = 'https://api.dropslate.top/v1/posts?status=draft&page=1&perPage=50';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.dropslate.top/v1/posts?status=draft&page=1&perPage=50' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”status
string
platform
string
page
integer
perPage
integer
Responses
Section titled “ Responses ”A page of posts, newest first.
Media typeapplication/json
object
posts
Array<object>
object
id
string
accountId
string
platform
string
mediaIds
Array<string>
text
string
title
string
tags
Array<string>
publishAt
string format: date-time
tz
string
status
string
externalId
string
externalUrl
string
error
object
code
string
message
string
hint
string
attempts
integer
createdVia
string
createdAt
string format: date-time
updatedAt
string format: date-time
statusLine
The post in one sentence, the same one the dashboard and an MCP agent show.
string
page
integer
perPage
integer
total
integer
Example
{ "posts": [ { "tz": "Europe/Kiev", "status": "draft", "createdVia": "ui", "statusLine": "Queued. YouTube · What We Made · 12 Sep, 18:00 (Kyiv)." } ]}