GET
/
projects
Get Projects
curl --request GET \
  --url https://blendduck.com/api/v1/projects
{
  "projects": [
    {
      "id": "<string>",
      "title": "<string>",
      "ratio": "<string>",
      "share": true,
      "teamId": "<string>",
      "userId": "<string>",
      "meta": {
        "version": "<string>"
      },
      "theme": {
        "background": {
          "color": {
            "type": "<any>",
            "color": "<any>"
          },
          "media": {
            "type": "<any>",
            "name": "<any>",
            "url": "<any>"
          }
        },
        "fontFamily": "<string>",
        "fontColor": {
          "type": "color",
          "color": "<string>"
        }
      },
      "clips": [
        {
          "id": "<string>",
          "duration": 1.01,
          "durationLock": true,
          "transition": "none",
          "elements": [
            "<any>"
          ],
          "audios": [
            {
              "id": "<any>",
              "type": "<any>",
              "url": "<any>",
              "name": "<any>",
              "offset": "<any>",
              "startTime": "<any>",
              "endTime": "<any>",
              "volume": "<any>",
              "fade": "<any>"
            }
          ],
          "background": {
            "color": {
              "type": "<any>",
              "color": "<any>"
            },
            "media": {
              "type": "<any>",
              "name": "<any>",
              "url": "<any>"
            }
          }
        }
      ],
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123
  }
}

Path Parameters

page
number
required
Example:

0

limit
number
required
Example:

20

Response

200 - application/json

Project List Response

projects
object[]
required
pagination
object
required