Skip to content

Device Download API

Jim Lake edited this page Jul 9, 2025 · 2 revisions

Device Download endpoints for API usage.

API Endpoint

All calls are made on the standard api endpoint:

https://api-prod.maxloapi.com

Check Download List

Check a list of hashes to see if they are available for download.

POST /device/1/media_grant/:media_grant_id/download

Request Authentication

device_session_key - string - provided in query string or body

Request Path

media_grant_id - string - The media grant ID.

Request Body

hash_list - array of string - Array of hashes to check.

Responses

200 OK

download_list - array of object - Array of download information.

  • file_hash - string - The hash of the file.

  • file_size - number - The size of the file.

  • chunk_size - number - The chunk size of the file.

  • url - string - The URL to download the file from.

  • is_deleted - boolean - Is the file deleted.

Clone this wiki locally