Fabric Origin Video Analytics API

Reports GB of video delivery usage by day for the Origin Nexus video surface.

Operations 1

GET /Analytics/GBUsage/ Get GB usage by date and tag. #

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/video-analytics-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-video-analytics-api-openapi.yml Raw ↑
openapi: 3.1.1
info:
  title: fabric Origin API
  version: '3.0'
tags:
- name: analytics
servers:
- url: https://api.origin.fabricdata.com
paths:
  /Analytics/GBUsage/:
    get:
      tags:
      - analytics
      summary: Get GB usage by date and tag.
      description: Get GB usage by date and tag.
      operationId: GetGBUsageGBUsage_Get
      parameters:
      - schema:
          type: string
        name: ReportTag
        in: query
        description: Report Tag filter.
        required: false
      - schema:
          type: string
          enum:
          - January
          - February
          - March
          - April
          - May
          - June
          - July
          - August
          - September
          - October
          - November
          - December
        name: Month
        in: query
        description: Report month
        required: false
      - schema:
          type: integer
          format: int32
        name: Year
        in: query
        description: Report year
        required: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GBUsageResponse'
      deprecated: false
components:
  schemas:
    GBUsageResponse:
      title: GBUsageResponse
      properties:
        TotalGB:
          type: number
          format: double
        MonthlyStorageInMinutes:
          type: string
        MonthEncodeMinutes:
          type: string
        Detail:
          type: array
          items:
            $ref: '#/components/schemas/GBUsageDay'
      description: GBUsageResponse
      type: object
    GBUsageDay:
      title: GBUsageDay
      properties:
        Date:
          type: string
          format: date-time
        GB:
          type: number
          format: double
        FlashPlayerRequests:
          type: integer
          format: int32
        ImageServiceRequests:
          type: integer
          format: int32
        ImageServiceGB:
          type: number
          format: double
      description: GBUsageDay
      type: object