Get All Projects

Written By Team BugSmash

Last updated 9 days ago

METHOD: GET
URL: https://api.bugsmash.io/api/v2/projects

HEADERS:
  X-API-Key: YOUR_API_KEY
  Content-Type: application/json

QUERY PARAMETERS:
  page        (integer)              - Page number
  limit       (integer, max: 50)     - Results per page
  folder_id   (uuid, optional)       - Filter by folder; pass null for root-level projects
  types[]     (array, optional)      - Filter by type: image, video, pdf, audio, website, ppt, email

CURL:
curl --location --globoff \
'https://api.bugsmash.io/api/v2/projects?page=1&limit=10&folderId=null&types[]=video&types[]=image' \
--header 'X-API-Key: YOUR_API_KEY'

RESPONSE:
{
  "status": true,
  "message": "Success",
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "name": "Advertisement Thumbnails",
        "owner": "b2c3d4e5-f6a7-8901-bcde-f01234567891",
        "share_access": "public",
        "type": "image",
        "short_url": "https://app.bugsmash.io/review/AbCdE",
        "banner": "https://cdn.bugsmash.io/files/{workspace-id}/image/example-thumbnail.jpg",
        "created_at": "2025-12-05T11:36:19.000000Z",
        "updated_at": "2026-03-06T19:01:17.000000Z"
      },
      {
        "id": "b2c3d4e5-f6a7-8901-bcde-f01234567891",
        "name": "Product Demo Video.mp4",
        "owner": "b2c3d4e5-f6a7-8901-bcde-f01234567891",
        "share_access": "public",
        "type": "video",
        "short_url": "https://app.bugsmash.io/review/FgHiJ",
        "banner": null,
        "created_at": "2026-02-03T11:33:58.000000Z",
        "updated_at": "2026-02-14T17:23:19.000000Z"
      }
    ]
  },
  "last_page": 9,
  "per_page": 10,
  "total": 88
}