For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
StatusSupportDiscussionsLog inSign Up
Docs HomeAPI ReferenceVideo on DemandAI FeaturesLive StreamingVideo PlayerVideo DataCloud PlayoutRecipes
Docs HomeAPI ReferenceVideo on DemandAI FeaturesLive StreamingVideo PlayerVideo DataCloud PlayoutRecipes
  • ACTIVATE ACCOUNT
    • Create account
  • PRODUCT OS API
    • Overview
  • ERROR CODES
    • Error codes
  • VIDEO ON DEMAND API
    • Overview
      • GETGet list of all media
      • GETGet all clips of a live stream
      • GETGet a media by ID
      • DELDelete a media by ID
      • PATCHUpdate a media by ID
      • POSTAdd audio / subtitle track
      • PUTCancel ongoing upload
      • DELDelete audio / subtitle track
      • PATCHUpdate audio / subtitle track
      • POSTGenerate track subtitle
      • GETGet the summary of a video
      • PATCHUpdate the source access of a media by ID
      • PATCHUpdate the mp4Support of a media by ID
      • GETGet info of media inputs
      • GETGet all unused upload URLs
      • GETGet all clips of a media
  • LIVE STREAM API
    • Overview
  • VIDEO DATA API
    • Overview
LogoLogo
StatusSupportDiscussionsLog inSign Up
VIDEO ON DEMAND APIManage videos

Get info of media inputs

GET
https://api.fastpix.com/v1/on-demand/:mediaId/input-info
GET
/v1/on-demand/:mediaId/input-info
$curl https://api.fastpix.com/v1/on-demand/4fa85f64-5717-4562-b3fc-2c963f66afa6/input-info \
> -u "<username>:<password>"
200Retrieved
1{
2 "success": true,
3 "data": {
4 "configuration": {
5 "url": "https://static.fastpix.com/fp-sample-video.mp4"
6 },
7 "file": {
8 "containerFormat": "mp4",
9 "tracks": [
10 {
11 "id": "6eb56a83-9a8b-47a5-94b2-cadb4458cf4d",
12 "type": "video",
13 "width": 1280,
14 "height": 720,
15 "frameRate": "30/1",
16 "status": "available"
17 }
18 ]
19 }
20 }
21}
This endpoint lets you retrieve detailed information about the media inputs associated with a specific media item. You can use it to verify the media file’s input URL, track its creation status, and check its container format. You must provide the mediaId (either the uploadId or the id) to fetch this information. #### How it works Upon making a `GET` request with the mediaId, FastPix returns a response with: * The public storage input `url` of the uploaded media file. * Information about the media’s video and audio tracks, including whether they were successfully created. * The container format of the uploaded media file (for example, MP4, MKV). This endpoint is particularly useful for ensuring that all necessary tracks (video and audio) have been correctly associated with the media during the upload or media creation process.
Was this page helpful?
Previous

Get all unused upload URLs

Next
Built with

This endpoint lets you retrieve detailed information about the media inputs associated with a specific media item. You can use it to verify the media file’s input URL, track its creation status, and check its container format. You must provide the mediaId (either the uploadId or the id) to fetch this information.

How it works

Upon making a GET request with the mediaId, FastPix returns a response with:

  • The public storage input url of the uploaded media file.

  • Information about the media’s video and audio tracks, including whether they were successfully created.

  • The container format of the uploaded media file (for example, MP4, MKV).

This endpoint is particularly useful for ensuring that all necessary tracks (video and audio) have been correctly associated with the media during the upload or media creation process.

Authentication

AuthorizationBasic

FastPix APIs are secured with Basic Authentication. Use your Access Token ID as the username and Secret Key as the password in the Authorization header of each API request.

  • Username: Access Token ID
  • Password: Secret Key

Activate your FastPix account to generate your API credentials. See the guide here

Path parameters

mediaIdstringRequiredformat: "uuid"
Pass the list of the input objects used to create the media, along with applied settings.

Response

Get video media input information
successboolean
Shows the request status. Returns true for success and false for failure.
dataobject
Displays the result of the request.