Fabric Origin Katch Media API

Katch genomic taste data — content broken into core attributes, organised into traits and content clusters.

Operations 1

GET /KatchMedia/MetaData Get Katch program Metadata by Origin Id #

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/katch-media-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-katch-media-api-openapi.yml Raw ↑
openapi: 3.1.1
info:
  title: Katch Media
  version: '1.0'
tags:
- name: katchmedia
servers:
- url: https://api.origin.fabricdata.com
paths:
  /KatchMedia/MetaData:
    get:
      tags:
      - katchmedia
      summary: Get Katch program Metadata by Origin Id
      description: Get Katch program Metadata by Origin Id
      operationId: GetKatchProgramMetaDataMetaData_Get
      parameters:
      - schema:
          type: string
        name: EntertainmentId
        in: query
        description: Id of an Entertainment program.
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KatchProgramData'
      deprecated: false
components:
  schemas:
    KatchProgramData:
      title: KatchProgramData
      properties:
        KatchId:
          type: string
        OriginId:
          type: string
        ProgramAndTraits:
          $ref: '#/components/schemas/KattchProgram'
        Clusters:
          $ref: '#/components/schemas/Datum'
      description: KatchProgramData
      type: object
    KattchProgram:
      title: KattchProgram
      properties:
        total_rows:
          type: integer
          format: int32
        katch_id:
          type: string
        title:
          type: string
        media_type:
          type: string
        box_office:
          $ref: '#/components/schemas/Object'
        budget:
          $ref: '#/components/schemas/Object'
        content_advisory:
          $ref: '#/components/schemas/Object'
        duration:
          type: string
        logline:
          type: string
        poster:
          type: string
        release_year:
          type: integer
          format: int32
        genres:
          type: array
          items:
            type: string
        universal_traits:
          type: array
          items:
            $ref: '#/components/schemas/UniversalTraits'
        organizations:
          type: array
          items:
            $ref: '#/components/schemas/Organization'
        crew:
          type: array
          items:
            $ref: '#/components/schemas/Crew'
        cast:
          type: array
          items:
            $ref: '#/components/schemas/Cast'
      description: KattchProgram
      type: object
    Object:
      properties: {}
      description: Object
      type: object
    UniversalTraits:
      title: UniversalTraits
      properties:
        category:
          type: string
        subcategory:
          type: string
        universal_trait:
          type: string
        activation_score:
          type: integer
          format: int32
      description: UniversalTraits
      type: object
    Organization:
      title: Organization
      properties:
        type:
          type: string
        organization:
          type: string
      description: Organization
      type: object
    Crew:
      title: Crew
      properties:
        job:
          type: string
        individual:
          type: string
      description: Crew
      type: object
    Cast:
      title: Cast
      properties:
        character:
          type: string
        individual:
          type: string
      description: Cast
      type: object
    Datum:
      title: Datum
      properties:
        internal_id:
          type: string
        top_clusters:
          type: array
          items:
            $ref: '#/components/schemas/TopClusters'
      description: Datum
      type: object
    TopClusters:
      title: TopClusters
      properties:
        rank:
          type: integer
          format: int32
        cluster_id:
          type: string
        cluster_name:
          type: string
        proximity_score:
          type: number
          format: float
        cluster_definition:
          type: string
      description: TopClusters
      type: object