Prevedere ComponentContributionOverrideValues API

The ComponentContributionOverrideValues API from Prevedere — 2 operation(s) for componentcontributionoverridevalues.

Operations 3

GET /componentcontributionoverridevalues/{forecastModelId} Retrieves all Contribution Override Values for a given locked model
DELETE /componentcontributionoverridevalues/{forecastModelId} Deletes all Component Contribution Override Values for a given locked model
POST /componentcontributionoverridevalues Creates Component Contribution Override Values for a given locked model

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/prevedere-componentcontributionoverridevalues-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

prevedere-componentcontributionoverridevalues-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Board Foresight API - V1 Alert Component Contribution Override Values API
  description: ''
  version: v1
servers:
- url: https://api.prevedere.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- api key: []
tags:
- name: ComponentContributionOverrideValues
  description: ''
paths:
  /componentcontributionoverridevalues/{forecastModelId}:
    get:
      tags:
      - ComponentContributionOverrideValues
      summary: Retrieves all Contribution Override Values for a given locked model
      parameters:
      - name: forecastModelId
        in: path
        description: Forecast Model Id
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: If Contribution Override Values were retrieved successfully
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ComponentContributionOverrideValues'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ComponentContributionOverrideValues'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ComponentContributionOverrideValues'
        '401':
          description: If the user isn't authenticated
        '403':
          description: Forbidden
        '404':
          description: If model wasn't found
        '422':
          description: Forecast model is expired or is not a production model
        '429':
          description: If the user has sent too many requests
        '400':
          description: If model is not locked
    delete:
      tags:
      - ComponentContributionOverrideValues
      summary: Deletes all Component Contribution Override Values for a given locked model
      parameters:
      - name: forecastModelId
        in: path
        description: Forecast Model Id
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: If Contribution Override Values were deleted successfully
        '401':
          description: If the user isn't authenticated
        '403':
          description: Forbidden
        '404':
          description: If model wasn't found
        '422':
          description: Forecast model is expired or is not a production model
        '429':
          description: If the user has sent too many requests
        '400':
          description: If model is not locked
  /componentcontributionoverridevalues:
    post:
      tags:
      - ComponentContributionOverrideValues
      summary: Creates Component Contribution Override Values for a given locked model
      requestBody:
        description: Component Contribution Override Values
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/ComponentContributionOverrideValuesRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/ComponentContributionOverrideValuesRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/ComponentContributionOverrideValuesRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ComponentContributionOverrideValuesRequest'
        required: true
      responses:
        '200':
          description: If Contribution Override Values were retrieved successfully
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ComponentContributionOverrideValues'
            application/json:
              schema:
                $ref: '#/components/schemas/ComponentContributionOverrideValues'
            text/json:
              schema:
                $ref: '#/components/schemas/ComponentContributionOverrideValues'
        '401':
          description: If the user isn't authenticated
        '403':
          description: Forbidden
        '404':
          description: If model wasn't found
        '422':
          description: Forecast model is expired or is not a production model
        '429':
          description: If the user has sent too many requests
components:
  schemas:
    ComponentContribution:
      type: object
      properties:
        date:
          type: string
          format: date-time
        value:
          type: number
          format: double
      additionalProperties: false
    ComponentContributionFrequency:
      enum:
      - 1
      - 2
      - 4
      - 12
      - 52
      type: integer
      description: 'The frequency of the data.



        Weekly: 52



        Monthly: 12



        Quarterly: 4



        SemiAnnual: 2



        Annual: 1'
      format: int32
    ComponentContributionOverrideValues:
      type: object
      properties:
        forecastModelId:
          type: string
          format: uuid
        frequency:
          $ref: '#/components/schemas/Frequency'
        entryId:
          type: string
          format: uuid
        contributionPeriods:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ComponentContribution'
      additionalProperties: false
    Frequency:
      enum:
      - 0
      - 1
      - 2
      - 4
      - 12
      - 52
      - 365
      - 1000
      type: integer
      description: 'The frequency of the data.



        Daily: 365



        Weekly: 52



        Monthly: 12



        Quarterly: 4



        SemiAnnual: 2



        Annual: 1'
      format: int32
    ComponentContributionOverrideValuesRequest:
      type: object
      properties:
        forecastModelId:
          type: string
          description: The id of the forecast model that will have its Component Contribution values overridden.
          format: uuid
        frequency:
          $ref: '#/components/schemas/ComponentContributionFrequency'
        entryId:
          type: string
          description: The entry id of the indicator that will have its value overridden.
          format: uuid
        contributionPeriods:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ComponentContribution'
          description: A list of override values, with a date and value for each.
      additionalProperties: false
  securitySchemes:
    api_key:
      type: apiKey
      name: ApiKey
      in: query