# Posts

Create, approve, schedule, publish, and manage posts.

GET `/brands/:slug/posts`

List posts, optionally filtered by status.

Query

`?status=pending_user | approved | scheduled | published | failed`

Responses

200 Array of posts

401 Invalid token

```
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/posts \
  -H "Authorization: Bearer $TOKEN"
```

PUT `/brands/:slug/posts/:id`

Update a post.

Request Body

```
{ "caption": "New text", "platforms": ["instagram"] }
```

Responses

200 Updated

404 Not found

```
curl -X PUT \
  https://anomalia.so/api/v1/brands/:slug/posts/:id \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "caption": "New text", "platforms": ["instagram"] }'
```

POST `/brands/:slug/posts/:id/approve`

Approve and publish a single post.

Responses

200 Approved

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/posts/:id/approve \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/posts/approve-all`

Approve all pending posts.

Responses

200 Bulk result

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/posts/approve-all \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/posts/:id/publish`

Publish immediately.

Responses

200 Published

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/posts/:id/publish \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/posts/:id/reschedule`

Reschedule a post.

Request Body

```
{ "scheduled_for": "2026-06-22T14:00:00Z" }
```

Responses

200 Rescheduled

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/posts/:id/reschedule \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "scheduled_for": "2026-06-22T14:00:00Z" }'
```

DELETE `/brands/:slug/posts/:id`

Delete a post (pending\_user only).

Responses

200 Deleted

```
curl -X DELETE \
  https://anomalia.so/api/v1/brands/:slug/posts/:id \
  -H "Authorization: Bearer $TOKEN"
```

[

← Previous

Brands

](/docs/api/brands)[

Next →

Editorial plan

](/docs/api/editorial-plan)

---
Source: https://www.anomalia.so/docs/api/posts
