Narrative Sports Projects API

The Projects API from Narrative Sports — 1 operation(s) for projects.

Operations 1

GET /v1/projects/{project_id}/highlight-options Get Project Highlight Options

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/usenarrative-projects-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

usenarrative-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Narrative Sports Health Projects API
  version: 1.0.0
servers:
- url: https://api.narrative-sports.com
tags:
- name: Projects
paths:
  /v1/projects/{project_id}/highlight-options:
    get:
      tags:
      - Projects
      summary: Get Project Highlight Options
      security:
      - HTTPBearer: []
      parameters:
      - name: project_id
        in: path
        required: true
        schema:
          type: integer
          title: Project Id
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HighlightOptionsResponse'
          description: Success
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    CountOption:
      properties:
        value:
          type: string
          title: Value
        count:
          type: integer
          title: Count
        otio_ready_count:
          type: integer
          title: Otio Ready Count
      type: object
      required:
      - value
      - count
      - otio_ready_count
      title: CountOption
    FightOption:
      properties:
        fight_number:
          type: integer
          title: Fight Number
        fight_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Fight Name
        count:
          type: integer
          title: Count
        otio_ready_count:
          type: integer
          title: Otio Ready Count
        round_numbers:
          items:
            type: integer
          type: array
          title: Round Numbers
        highlight_ids:
          items:
            type: string
          type: array
          title: Highlight Ids
      type: object
      required:
      - fight_number
      - count
      - otio_ready_count
      - round_numbers
      - highlight_ids
      title: FightOption
    HighlightOptionsResponse:
      properties:
        project_id:
          type: integer
          title: Project Id
        project_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Project Name
        event_types:
          items:
            $ref: '#/components/schemas/CountOption'
          type: array
          title: Event Types
        teams:
          items:
            $ref: '#/components/schemas/CountOption'
          type: array
          title: Teams
        players:
          items:
            $ref: '#/components/schemas/CountOption'
          type: array
          title: Players
        fights:
          items:
            $ref: '#/components/schemas/FightOption'
          type: array
          title: Fights
        highlights:
          items:
            $ref: '#/components/schemas/HighlightOption'
          type: array
          title: Highlights
        total_highlights:
          type: integer
          title: Total Highlights
        otio_ready_highlights:
          type: integer
          title: Otio Ready Highlights
      type: object
      required:
      - project_id
      - event_types
      - teams
      - players
      - fights
      - highlights
      - total_highlights
      - otio_ready_highlights
      title: HighlightOptionsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    HighlightOption:
      properties:
        id:
          type: string
          title: Id
        event_type:
          anyOf:
          - type: string
          - type: 'null'
          title: Event Type
        custom_category_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Custom Category Name
        event_description:
          anyOf:
          - type: string
          - type: 'null'
          title: Event Description
        event_timestamp_seconds:
          anyOf:
          - type: number
          - type: 'null'
          title: Event Timestamp Seconds
        edit_length:
          anyOf:
          - type: number
          - type: 'null'
          title: Edit Length
        target_team:
          anyOf:
          - type: string
          - type: 'null'
          title: Target Team
        target_players:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Target Players
        fight_number:
          anyOf:
          - type: integer
          - type: 'null'
          title: Fight Number
        round_number:
          anyOf:
          - type: integer
          - type: 'null'
          title: Round Number
        fight_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Fight Name
        otio_ready:
          type: boolean
          title: Otio Ready
      type: object
      required:
      - id
      - otio_ready
      title: HighlightOption
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer