MediaValet Downloads API

Asset download requests, packaged downloads and download presets. 9 operations.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mediavalet-downloads-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mediavalet-downloads-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: MediaValet Downloads API
  description: |-
    The MediaValet API is a RESTful, JSON, hypermedia-driven service that supplies data to clients consuming the MediaValet cloud digital asset management (DAM) platform. The service applies business rules, permission rules, and other data processing to standardize what is returned. Requests go to the API gateway at https://api.mediavalet.com and must carry two credentials: an OAuth 2.0 / OpenID Connect Bearer access token issued by https://login.mediavalet.com/connect/token, and a per-account subscription key in the Ocp-Apim-Subscription-Key header. Requests also carry an x-mv-api-version header to select the API version. Access requires a MediaValet subscription and registration in the MediaValet Developer Portal at https://developer.mediavalet.com.

    PROVENANCE: this definition is derived operation-for-operation from MediaValet's own published Postman collection ("MediaValet API", collection 55cc404f-b818-43ba-87c2-1a07f2a47bd9) served at https://docs.mediavalet.com/api/collections/15676803/TzRUB7XE. Paths, methods, parameters, request bodies, response status codes and examples come from that collection. Schemas are inferred from the collection's request/response example payloads and are indicative rather than authoritative.
  version: '1.0'
  contact:
    name: MediaValet
    url: https://developer.mediavalet.com
  termsOfService: https://www.mediavalet.com/terms-of-service
servers:
- url: https://api.mediavalet.com
  description: MediaValet API gateway (public)
security:
- oauth2:
  - api
  subscriptionKey: []
tags:
- name: Downloads
  description: Asset download requests, packaging and download presets.
paths:
  /downloads:
    get:
      operationId: retrieveDownloads
      summary: Retrieve Downloads
      description: Returns a collection of all downloads.
      tags:
      - Downloads
      parameters:
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  hash:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        createdDateTime:
                          type: string
                          format: date-time
                        fileName:
                          type: string
                        filePath:
                          type: string
                        fileSize:
                          type: integer
                        itemCount:
                          type: integer
                        processedCount:
                          type: integer
                        status:
                          type: string
                        _links:
                          type: object
                          properties:
                            self:
                              type: string
                            functions:
                              type: array
                              items:
                                type: string
                        translationKeys:
                          type: object
                          properties:
                            mollit44f:
                              type: object
                        interpolations:
                          type: object
                          properties:
                            consequat78:
                              type: object
                            do484:
                              type: object
                        permissions:
                          type: array
                          items:
                            type: string
                  _links:
                    type: object
                    properties:
                      self:
                        type: string
                      functions:
                        type: array
                        items:
                          type: string
                  translationKeys:
                    type: object
                    properties:
                      enim_ad0:
                        type: object
                  interpolations:
                    type: object
                    properties:
                      ullamco_9:
                        type: object
                  permissions:
                    type: array
                    items:
                      type: string
              example:
                hash: <string>
                data:
                - id: <uuid>
                  createdDateTime: <dateTime>
                  fileName: <string>
                  filePath: <string>
                  fileSize: <long>
                  itemCount: <integer>
                  processedCount: <integer>
                  status: <string>
                  _links:
                    self: <string>
                    functions:
                    - <string>
                    - <string>
                  translationKeys:
                    mollit44f: {}
                  interpolations:
                    consequat78: {}
                    do484: {}
                  permissions:
                  - asset:shareAsCdnLink
                  - lightbox:editDetails
                - id: <uuid>
                  createdDateTime: <dateTime>
                  fileName: <string>
                  filePath: <string>
                  fileSize: <long>
                  itemCount: <integer>
                  processedCount: <integer>
                  status: <string>
                  _links:
                    self: <string>
                    functions:
                    - <string>
                    - <string>
                  translationKeys:
                    eiusmod_7a: {}
                  interpolations:
                    dolor_f: {}
                    anim405: {}
                    voluptate_52: {}
                    incididunta: {}
                    cupidatat99: {}
                  permissions:
                  - asset:downloadFromPortal
                  - asset:createVideoClip
                _links:
                  self: <string>
                  functions:
                  - <string>
                  - <string>
                translationKeys:
                  enim_ad0: {}
                interpolations:
                  ullamco_9: {}
                permissions:
                - user:editEmail
                - asset:shareAsZippedFile
        '401':
          description: The request failed because of a problem on the server.
        '403':
          description: The user does not have permission to perform this operation.
        '500':
          description: The request failed because of a problem on the server.
    post:
      operationId: createDownloadById
      summary: Create Download By Id
      description: Creates a new download.
      tags:
      - Downloads
      parameters:
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                attributeIdValues:
                  type: array
                  items:
                    type: object
                    properties:
                      fieldId:
                        type: string
                        format: uuid
                      value:
                        type: string
                downloadSettingsPostDetail:
                  type: object
                  properties:
                    allowsAssetDownload:
                      type: boolean
                    images:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        format:
                          type: string
                        dimensions:
                          type: object
                          properties:
                            width:
                              type: integer
                            height:
                              type: integer
                            customDimensions:
                              type: boolean
                        spectrum:
                          type: string
                        resolution:
                          type: string
                        addWatermark:
                          type: boolean
                        watermarkUrl:
                          type: string
                        includeContactSheet:
                          type: boolean
                        contactSheet:
                          type: object
                          properties:
                            rows:
                              type: integer
                            cols:
                              type: integer
                            logoBlobUrl:
                              type: string
                        renditionType:
                          type: string
                    videos:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        format:
                          type: string
                        dimensions:
                          type: object
                          properties:
                            width:
                              type: integer
                            height:
                              type: integer
                            customDimensions:
                              type: boolean
                        renditionType:
                          type: string
                    audio:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        quality:
                          type: object
                          properties:
                            value:
                              type: integer
                            unit:
                              type: string
                        format:
                          type: string
                    documents:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        format:
                          type: string
                    csvFormat:
                      type: boolean
                    csvFileName:
                      type: string
                    zipFileName:
                      type: string
                    ids:
                      type: array
                      items:
                        type: string
                        format: uuid
            example:
              attributeIdValues:
              - fieldId: <uuid>
                value: <string>
              - fieldId: <uuid>
                value: <string>
              downloadSettingsPostDetail:
                allowsAssetDownload: <boolean>
                images:
                  shareOriginals: <boolean>
                  format: <string>
                  dimensions:
                    width: <integer>
                    height: <integer>
                    customDimensions: <boolean>
                  spectrum: SRgb
                  resolution: Unknown
                  addWatermark: <boolean>
                  watermarkUrl: <string>
                  includeContactSheet: <boolean>
                  contactSheet:
                    rows: <integer>
                    cols: <integer>
                    logoBlobUrl: <string>
                  renditionType: Original
                videos:
                  shareOriginals: <boolean>
                  format: Mov
                  dimensions:
                    width: <integer>
                    height: <integer>
                    customDimensions: <boolean>
                  renditionType: HighDefinition
                audio:
                  shareOriginals: <boolean>
                  quality:
                    value: <integer>
                    unit: <string>
                  format: Mp4
                documents:
                  shareOriginals: <boolean>
                  format: Originals
                csvFormat: <boolean>
                csvFileName: <string>
                zipFileName: <string>
                ids:
                - <uuid>
                - <uuid>
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example: {}
        '202':
          description: Request was accepted.
          content:
            application/json:
              schema:
                type: object
                properties:
                  batchId:
                    type: string
                    format: uuid
                  _links:
                    type: object
                    properties:
                      self:
                        type: string
                      functions:
                        type: array
                        items:
                          type: string
                  translationKeys:
                    type: object
                    properties:
                      ullamco_f_3:
                        type: object
                      occaecat_192:
                        type: object
                  interpolations:
                    type: object
                    properties:
                      consectetur_4:
                        type: object
                      dolore_f5:
                        type: object
                  permissions:
                    type: array
                    items:
                      type: string
              example:
                batchId: <uuid>
                _links:
                  self: <string>
                  functions:
                  - <string>
                  - <string>
                translationKeys:
                  ullamco_f_3: {}
                  occaecat_192: {}
                interpolations:
                  consectetur_4: {}
                  dolore_f5: {}
                permissions:
                - asset:downloadFromMvd
                - asset:assignCategory
        '401':
          description: The current user is not authorized to view this end-point.
        '403':
          description: The user does not have permission to perform this operation.
        '500':
          description: The request failed because of a problem on the server.
  /downloads/{id}:
    get:
      operationId: retrieveDownloadDetailedInformation
      summary: Retrieve Download Detailed Information
      description: Retrieve detailed information for a specific download.
      tags:
      - Downloads
      parameters:
      - name: id
        in: path
        required: true
        description: id path parameter.
        schema:
          type: string
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  createdDateTime:
                    type: string
                    format: date-time
                  fileName:
                    type: string
                  filePath:
                    type: string
                  fileSize:
                    type: integer
                  itemCount:
                    type: integer
                  processedCount:
                    type: integer
                  status:
                    type: string
                  _links:
                    type: object
                    properties:
                      self:
                        type: string
                      functions:
                        type: array
                        items:
                          type: string
                  translationKeys:
                    type: object
                    properties:
                      exercitation6:
                        type: object
                      nulla_bf9:
                        type: object
                  interpolations:
                    type: object
                    properties:
                      est_c79:
                        type: object
                  permissions:
                    type: array
                    items:
                      type: string
              example:
                id: <uuid>
                createdDateTime: <dateTime>
                fileName: <string>
                filePath: <string>
                fileSize: <long>
                itemCount: <integer>
                processedCount: <integer>
                status: <string>
                _links:
                  self: <string>
                  functions:
                  - <string>
                  - <string>
                translationKeys:
                  exercitation6: {}
                  nulla_bf9: {}
                interpolations:
                  est_c79: {}
                permissions:
                - lightbox:transferOwnership
                - asset:createVideoClip
        '401':
          description: The current user is not authorized to view this end-point.
        '403':
          description: The user does not have permission to perform this operation.
        '404':
          description: The download was not found.
        '500':
          description: The request failed because of a problem on the server.
    post:
      operationId: createANewDownloadById
      summary: Create A New Download By Id
      description: Creates a new download by id.
      tags:
      - Downloads
      parameters:
      - name: id
        in: path
        required: true
        description: id path parameter.
        schema:
          type: string
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                attributeIdValues:
                  type: array
                  items:
                    type: object
                    properties:
                      fieldId:
                        type: string
                        format: uuid
                      value:
                        type: string
                downloadSettingsPostDetail:
                  type: object
                  properties:
                    allowsAssetDownload:
                      type: boolean
                    images:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        format:
                          type: string
                        dimensions:
                          type: object
                          properties:
                            width:
                              type: integer
                            height:
                              type: integer
                            customDimensions:
                              type: boolean
                        spectrum:
                          type: string
                        resolution:
                          type: string
                        addWatermark:
                          type: boolean
                        watermarkUrl:
                          type: string
                        includeContactSheet:
                          type: boolean
                        contactSheet:
                          type: object
                          properties:
                            rows:
                              type: integer
                            cols:
                              type: integer
                            logoBlobUrl:
                              type: string
                        renditionType:
                          type: string
                    videos:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        format:
                          type: string
                        dimensions:
                          type: object
                          properties:
                            width:
                              type: integer
                            height:
                              type: integer
                            customDimensions:
                              type: boolean
                        renditionType:
                          type: string
                    audio:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        quality:
                          type: object
                          properties:
                            value:
                              type: integer
                            unit:
                              type: string
                        format:
                          type: string
                    documents:
                      type: object
                      properties:
                        shareOriginals:
                          type: boolean
                        format:
                          type: string
                    csvFormat:
                      type: boolean
                    csvFileName:
                      type: string
                    zipFileName:
                      type: string
                    ids:
                      type: array
                      items:
                        type: string
                        format: uuid
            example:
              attributeIdValues:
              - fieldId: <uuid>
                value: <string>
              - fieldId: <uuid>
                value: <string>
              downloadSettingsPostDetail:
                allowsAssetDownload: <boolean>
                images:
                  shareOriginals: <boolean>
                  format: <string>
                  dimensions:
                    width: <integer>
                    height: <integer>
                    customDimensions: <boolean>
                  spectrum: SRgb
                  resolution: Unknown
                  addWatermark: <boolean>
                  watermarkUrl: <string>
                  includeContactSheet: <boolean>
                  contactSheet:
                    rows: <integer>
                    cols: <integer>
                    logoBlobUrl: <string>
                  renditionType: Original
                videos:
                  shareOriginals: <boolean>
                  format: Mov
                  dimensions:
                    width: <integer>
                    height: <integer>
                    customDimensions: <boolean>
                  renditionType: HighDefinition
                audio:
                  shareOriginals: <boolean>
                  quality:
                    value: <integer>
                    unit: <string>
                  format: Mp4
                documents:
                  shareOriginals: <boolean>
                  format: Originals
                csvFormat: <boolean>
                csvFileName: <string>
                zipFileName: <string>
                ids:
                - <uuid>
                - <uuid>
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example: {}
        '202':
          description: Request was accepted.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  sasUrl:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      properties:
                        fieldId:
                          type: string
                          format: uuid
                        message:
                          type: string
              example:
                id: <uuid>
                sasUrl: <string>
                errors:
                - fieldId: <uuid>
                  message: <string>
                - fieldId: <uuid>
                  message: <string>
        '400':
          description: There was a problem with the data sent with the request.
        '403':
          description: The user does not have permission to perform this operation.
        '500':
          description: The request failed because of a problem on the server.
    delete:
      operationId: removeDownload
      summary: Remove Download
      description: Remove a specific download by download id.
      tags:
      - Downloads
      parameters:
      - name: id
        in: path
        required: true
        description: id path parameter.
        schema:
          type: string
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      responses:
        '200':
          description: Request was successful.
        '401':
          description: The current user is not authorized to view this end-point.
        '403':
          description: The user does not have permission to perform this operation.
        '404':
          description: The download was not found.
        '500':
          description: The request failed because of a problem on the server.
  /downloads/assets:
    post:
      operationId: downloadsGetImmediateDownloadAsync
      summary: Downloads Get Immediate Download Async
      tags:
      - Downloads
      parameters:
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                downloadStartedAt:
                  type: string
                  format: date-time
                assetIds:
                  type: array
                  items:
                    type: string
                    format: uuid
            example:
              downloadStartedAt: <dateTime>
              assetIds:
              - <uuid>
              - <uuid>
      responses:
        '200':
          description: Request was successful.
        '401':
          description: The current user is not authorized to view this end-point.
        '403':
          description: The user does not have permission to perform this operation.
        '500':
          description: The request failed because of a problem on the server.
  /downloads/validate:
    post:
      operationId: validateDownload
      summary: Validate Download
      description: Validate a download.
      tags:
      - Downloads
      parameters:
      - name: x-mv-api-version
        in: header
        required: false
        description: (Required) The requested API version
        schema:
          type: string
        example: '1.2'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                isDirectDownload:
                  type: boolean
            example:
              isDirectDownload: <boolean>
      responses:
        '200':
          description: Request was successful.
          content:
            application/json:
              schema:
                type: object
                properties:
                  downloadId:
                    type: string
                    format: uuid
                  downloadLink:
                    type: string
                  preconditions:
                    type: array
                    items:
                      type: string
                  settings:
                    type: array
                    items:
                      type: string
                  customFormDetails:
                    type: object
                    properties:
                      fieldGroups:
                        type: array
                        items:
                          type: object
                          properties:
                            groupId:
                              type: string
                              format: uuid
                            groupName:
                              type: string
                            fields:
                              type: array
                              items:
                                type: object
                                properties:
                                  id:
                                    type: string
                                    format: uuid
                                  label:
                                    type: string
                                  type:
                                    type: string
                                  isRequired:
                                    type: boolean
                                  sequence:
                                    type: integer
                                  description:
                                    type: string
                                  listItems:
                                    type: array
                                    items:
                                      type: object
                                      properties:
                                        label:
                                          type: string
                                        value:
                                          type: string
                            defaultAction:
                              type: integer
                      dependencies:
                        type: array
                        items:
                          type: object
                          properties:
                            dependentGroupId:
                              type: string
                              format: uuid
                            dependsOnFieldId:
                              type: string
                              format: uuid
                            dependsOnFieldValue:
                              type: string
                            ruleCondition:
                              type: integer
                            action:
                              type: integer
              example:
                downloadId: <uuid>
                downloadLink: <string>
                preconditions:
                - <string>
                - <string>
                settings:
                - <string>
                - <string>
                customFormDetails:
                  fieldGroups:
                  - groupId: <uuid>
                    groupName: <string>
                    fields:
                    - id: <uuid>
       

# --- truncated at 32 KB (40 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mediavalet/refs/heads/main/openapi/mediavalet-downloads-api-openapi.yml