Fabric Origin Rabbit Recommendations API

Content recommendations over the Origin catalog.

Operations 1

GET /RabbitRecommendations/recommendations List of Entertainment Program Recommendations for movies or shows. #

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/rabbit-recommendations-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-rabbit-recommendations-api-openapi.yml Raw ↑
openapi: 3.1.1
info:
  title: Rabbit Recommendations API
  version: '1.0'
tags:
- name: rabbitrecommendations
servers:
- url: https://api.origin.fabricdata.com
paths:
  /RabbitRecommendations/recommendations:
    get:
      tags:
      - rabbitrecommendations
      summary: List of Entertainment Program Recommendations for movies or shows.
      description: ''
      operationId: GetXroadMediaRecommendationsrecommendations_Get
      parameters:
      - schema:
          type: integer
          format: int64
        name: MovieId
        in: query
        description: Source MovieId for recommendations.
        required: false
      - schema:
          type: integer
          format: int64
        name: ShowId
        in: query
        description: Source ShowId for recommendations.
        required: false
      - schema:
          type: string
          enum:
          - similar
          - similarShowsOnly
          - similarMoviesOnly
        name: Type
        in: query
        description: Type of recommendation response.
        required: false
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/XRoadMediaRecommendationResponse'
      deprecated: false
components:
  schemas:
    XRoadMediaRecommendationResponse:
      title: XRoadMediaRecommendationResponse
      properties:
        recommendations:
          type: array
          items:
            $ref: '#/components/schemas/Recommendation'
      description: XRoadMediaRecommendationResponse
      type: object
    Recommendation:
      title: Recommendation
      properties:
        explanations:
          description: List of reasons for recommendation.
          type: array
          items:
            $ref: '#/components/schemas/Explanation'
        score:
          description: Quality of the recommendation relative to other recommendations.
          type: number
          format: float
        program:
          $ref: '#/components/schemas/Program'
          description: The ID and Type of IVA Program.
      description: Recommendation
      type: object
    Explanation:
      title: Explanation
      properties:
        originator:
          description: Origination of the explanation.
          type: string
        type:
          description: The granularity of recommendation match.
          type: string
        message:
          type: string
      description: Explanation
      type: object
    Program:
      title: Program
      properties:
        Id:
          description: The ID of the program (show or movie)
          type: integer
          format: int64
        Type:
          description: The type of IVA program (show or movie).
          type: string
      description: Program
      type: object