v1

latestOpenAPI 3.1.02026-07-24650272.2 KB
API Endpoints

List Profiles

This endpoint retrieves the details of all profiles that have previously been created.

get/video/profiles

Query parameters

offsetinteger

Offset value for a paginated list of profiles. Can be zero for the first time and current_offset value received from the last request afterwards.

sizeinteger

Page size for the paginated list. Default: 10

Response

200

total_profile_countinteger
current_offsetinteger

Example response

{
  "all_profiles": [
    {
      "profile_id": "61921fb10822a81d955d1730",
      "name": "Gumlet-Profile-1",
      "transformations": {
        "format": "hls",
        "audio_codec": [
          "aac"
        ],
        "video_codec": [
          "libx264"
        ],
        "thumbnail": [
          "auto"
        ],
        "thumbnail_format": "png",
        "per_title_encoding": true
      },
      "created_at": 1636966321742,
      "updated_at": 1636966321742
    }
  ],
  "total_profile_count": 8,
  "current_offset": 8
}