Fabric Origin Image API

The Image API provides access to images hosted on Fabric Origin's servers, including posters, stills, and promotional artwork referenced from the Entertainment and Celebrity APIs. Customers are encouraged to host and serve images from their own infrastructure for production use.

Operations 4

GET /Images/{FilePath}/Redirect Redirect to an Image. #
POST /Images/Batch List of Batch Image. #
POST /Images/ScreenCaptures/Batch List of Screen Capture Responses. #
GET /Images/ScreenCaptures/Redirect Redirect to a Screen Capture. #

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/image-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

fabric-origin-images-api-openapi.yml Raw ↑
openapi: 3.1.1
info:
  title: fabric Origin API
  version: '3.0'
tags:
- name: images
servers:
- url: https://api.origin.fabricdata.com
paths:
  /Images/{FilePath}/Redirect:
    get:
      tags:
      - images
      summary: Redirect to an Image.
      description: 'Images should be downloaded and stored on the client server. Use /Common/ImageTypes to see a
        list of available image types. Note: The swagger U/I does not support redirects.'
      operationId: GetImageRedirectFilePathRedirect_Get
      parameters:
      - schema:
          type: string
        name: FilePath
        in: path
        description: Filepath of Image.
        required: true
      - schema:
          type: boolean
        name: Redirect
        in: query
        description: Redirect to the image. Default = true
        required: false
      - schema:
          type: string
        name: ExpirationMinutes
        in: query
        description: Image url expiration in minutes. Default = 60. Maximum is 1440.
        required: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImageRedirectResponse'
      deprecated: false
  /Images/Batch:
    post:
      tags:
      - images
      summary: List of Batch Image.
      description: Requires a list filepath.
      operationId: GetImageBatchBatch_Post
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                title: List<ImageBatchResponse>
                type: array
                items:
                  $ref: '#/components/schemas/ImageBatchResponse'
      deprecated: false
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                FilePath:
                  type: array
                  description: List of Filepaths.
              required: []
  /Images/ScreenCaptures/Batch:
    post:
      tags:
      - images
      summary: List of Screen Capture Responses.
      description: Requires a list of filepaths.
      operationId: GetScreenCaptureBatchScreenCapturesBatch_Post
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                title: List<ImageBatchResponse>
                type: array
                items:
                  $ref: '#/components/schemas/ImageBatchResponse'
      deprecated: false
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                FilePath:
                  type: array
                  description: List of Filepaths.
              required: []
  /Images/ScreenCaptures/Redirect:
    get:
      tags:
      - images
      summary: Redirect to a Screen Capture.
      description: 'Requires a valid filepath of a video asset screen capture. Note: The swagger U/I does not support
        redirects.'
      operationId: GetScreenCaptureRedirectScreenCapturesRedirect_Get
      parameters:
      - schema:
          type: string
        name: FilePath
        in: query
        description: Filepath of Image.
        required: true
      - schema:
          type: boolean
        name: Redirect
        in: query
        description: Redirect to the image. Default = true
        required: false
      - schema:
          type: string
        name: ExpirationMinutes
        in: query
        description: Image url expiration in minutes. Default = 60. Maximum is 1440.
        required: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScreenCaptureRedirectResponse'
      deprecated: false
components:
  schemas:
    ImageRedirectResponse:
      title: ImageRedirectResponse
      properties:
        Url:
          description: URL to image request.
          type: string
        Expires:
          description: 'Image URLs are hashed and expire. ISO 8601 Format: yyyy-mm-dd hh:mm:ss.ffffff0Z '
          type: string
          format: date-time
      description: ImageRedirectResponse
      type: object
    ScreenCaptureRedirectResponse:
      title: ScreenCaptureRedirectResponse
      properties:
        Url:
          description: URL to image request.
          type: string
        Expires:
          description: 'Image URLs are hashed and expire. ISO 8601 Format: yyyy-mm-dd hh:mm:ss.ffffff0Z '
          type: string
          format: date-time
      description: ScreenCaptureRedirectResponse
      type: object