DecisionLink Generate Value Model API

The generate-value-model API from DecisionLink — 2 operation(s) for generate-value-model.

Operations 2

POST /v1/value-chat/generate-value-model Start value model generation from uploaded files #
GET /stream/generate-value-model/{job_id}/status Stream value model generation status via Server-Sent Events #

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/decisionlink-generate-value-model-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

decisionlink-generate-value-model-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Value Chat Server Generate Value Model API
  description: Value chat service
  version: '1.0'
  x-api-evangelist-source: https://api.xfactor.io/api/v1/value-chat/openapi.json
servers:
- url: https://api.xfactor.io
  description: Production API host (Auth0 audience of the Xfactor.io web application)
tags:
- name: generate-value-model
paths:
  /v1/value-chat/generate-value-model:
    post:
      tags:
      - generate-value-model
      summary: Start value model generation from uploaded files
      description: Kick off async value model generation. Returns a job_id to poll.
      operationId: start_generate_value_model_v1_value_chat_generate_value_model_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateValueModelRequest'
        required: true
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /stream/generate-value-model/{job_id}/status:
    get:
      tags:
      - generate-value-model
      summary: Stream value model generation status via Server-Sent Events
      description: SSE stream emitting job state once per second until done or error.
      operationId: get_generate_value_model_status_stream_generate_value_model__job_id__status_get
      security:
      - HTTPBearer: []
      parameters:
      - name: job_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Job Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GenerateValueModelRequest:
      properties:
        file_ids:
          items:
            type: string
          type: array
          title: File Ids
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
      type: object
      required:
      - file_ids
      title: GenerateValueModelRequest
      description: Request body for starting value model generation.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    HTTPBearer:
      type: http
      description: Access token in the form of a JWT
      scheme: bearer