/📘 API Reference/Media Library

Media Library

List every media asset in your workspace. Supports pagination and type filtering.

Endpoint

GET/media

Example

curl "https://api.plansched.com/developers/v1/media?type=image&limit=50" \
  -H "Authorization: Bearer $PLANSCHED_KEY"

Response

{
  "data": [
    {
      "id": "med_9x8y7z",
      "type": "image",
      "url": "https://cdn.plansched.com/media/med_9x8y7z.png",
      "created_at": "2026-07-21T10:04:12Z"
    }
  ],
  "next_cursor": null
}
Next
API Reference → Delete Media
Continue