Segmind Fine-tuning API

DEPRECATED. Fine-tuning request management and data handling. Segmind's fine-tuning service no longer accepts new training jobs; existing fine-tuned models remain available for inference until further notice.

Operations 6

POST /finetune/request/submit Initiate a fine-tuning job #
GET /finetune/request/details Get details for a fine-tune request #
GET /finetune/request/list List fine-tuning requests #
PUT /finetune/request/access-update Update fine-tuned model access (public/private) #
GET /finetune/request/upload/pre-signed-url Obtain a pre-signed upload URL for fine-tune data #
GET /finetune/request/file/download Download trained model weights #

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/segmind-fine-tuning-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

segmind-fine-tuning-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Segmind Account Fine Tuning API
  description: Segmind provides API access to top AI models for rapid prototyping and deployment, including synchronous and asynchronous model inference, fine-tuning, and asset upload. Authenticated with an API key header.
  version: '1'
  contact:
    name: Segmind
    url: https://www.segmind.com/
servers:
- url: https://api.segmind.com
  description: Segmind model inference and account API
- url: https://workflows-api.segmind.com
  description: Segmind workflows/storage API
security:
- apiKeyAuth: []
tags:
- name: Fine-tuning
  description: Fine-tuning request management and data handling
paths:
  /finetune/request/submit:
    post:
      tags:
      - Fine-tuning
      summary: Initiate a fine-tuning job
      operationId: submitFinetune
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          description: Fine-tune request accepted
  /finetune/request/details:
    get:
      tags:
      - Fine-tuning
      summary: Get details for a fine-tune request
      operationId: getFinetuneDetails
      parameters:
      - in: query
        name: request_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Fine-tune details
  /finetune/request/list:
    get:
      tags:
      - Fine-tuning
      summary: List fine-tuning requests
      operationId: listFinetuneRequests
      responses:
        '200':
          description: Array of fine-tune requests
  /finetune/request/access-update:
    put:
      tags:
      - Fine-tuning
      summary: Update fine-tuned model access (public/private)
      operationId: updateFinetuneAccess
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                request_id:
                  type: string
                access:
                  type: string
                  enum:
                  - public
                  - private
      responses:
        '200':
          description: Updated
  /finetune/request/upload/pre-signed-url:
    get:
      tags:
      - Fine-tuning
      summary: Obtain a pre-signed upload URL for fine-tune data
      operationId: getFinetuneUploadUrl
      responses:
        '200':
          description: Pre-signed URL response
  /finetune/request/file/download:
    get:
      tags:
      - Fine-tuning
      summary: Download trained model weights
      operationId: downloadFinetuneFile
      parameters:
      - in: query
        name: request_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: File download URL or stream
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key