Simplismart Chat Completion API

Large Language Model chat completion services

Operations 1

POST /chat/completions Create chat completion with Llama 70B #

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/simplismart-chat-completion-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

simplismart-chat-completion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Simplismart Chat Completion API
  version: 1.0.0
  description: 'Operations tagged Chat Completion across 9 of this provider''s published API definitions: simplismart-deepseek-r1-qwen-32b-openapi.yml, simplismart-devstral-small-openapi.yml, simplismart-gemma3-27b-openapi.yml, simplismart-gemma3-4b-openapi.yml, simplismart-llama-3.3-70b-openapi.yml, simplismart-llama-4-maverick-17b-openapi.yml, simplismart-llama-8b-openapi.yml, simplismart-mixtral-8x7b-openapi.yml, simplismart-qwen-32b-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.simplismart.live
  description: DeepSeek-R1-Distill-Qwen-32B Proxy Server
- url: https://http.llama-4-maverick-17b-fp8-proxy.yotta-infrastructure.on-prem.clusters.s9t.link
  description: Production LLM Proxy Server
security:
- BearerAuth: []
tags:
- name: Chat Completion
  description: Large Language Model chat completion services
paths:
  /chat/completions:
    post:
      tags:
      - Chat Completion
      summary: Create chat completion with Llama 70B
      description: Create a chat completion for given messages with streaming support
      operationId: createChatCompletion70B
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                messages:
                  type: array
                  description: Array of messages in the conversation
                  items:
                    type: object
                    properties:
                      role:
                        type: string
                        enum:
                        - system
                        - user
                        - assistant
                        description: The role of the message sender
                      content:
                        type: string
                        description: The content of the message
                    required:
                    - role
                    - content
                model:
                  type: string
                  description: Model identifier
                  enum:
                  - RedHatAI/DeepSeek-R1-Distill-Qwen-32B-FP8-dynamic
                  default: RedHatAI/DeepSeek-R1-Distill-Qwen-32B-FP8-dynamic
                stream:
                  type: boolean
                  description: Whether to stream the response
                  default: false
                temperature:
                  type: number
                  description: Sampling temperature
                  minimum: 0
                  maximum: 2
                  default: 0.7
                max_tokens:
                  type: integer
                  description: Maximum number of tokens to generate
                  minimum: 1
                  maximum: 4096
                  default: 1024
                top_p:
                  type: number
                  description: Nucleus sampling parameter
                  minimum: 0
                  maximum: 1
                  default: 0.95
                stop:
                  type: array
                  description: Sequences where the API will stop generating
                  items:
                    type: string
                  nullable: true
              required:
              - messages
              - model
            example:
              model: RedHatAI/DeepSeek-R1-Distill-Qwen-32B-FP8-dynamic
              messages:
              - role: system
                content: Act as a helpful assistant to the user
              - role: user
                content: Give me a travel itinerary for a 7-day trip to Japan
              stream: false
              temperature: 0.7
              max_tokens: 1024
              top_p: 0.9
              stop: null
      responses:
        '200':
          description: Successful chat completion
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Unique identifier for the completion
                  choices:
                    type: array
                    items:
                      type: object
                      properties:
                        delta:
                          type: object
                          properties:
                            content:
                              type: string
                              description: Generated text content
                        index:
                          type: integer
                          description: Index of the choice
                        finish_reason:
                          type: string
                          enum:
                          - stop
                          - length
                          - content_filter
                          description: Reason for finishing the generation
        '400':
          description: Invalid request parameters
        '401':
          description: Unauthorized - Invalid token
        '500':
          description: Internal server error
    servers:
    - url: https://api.simplismart.live
      description: DeepSeek-R1-Distill-Qwen-32B Proxy Server
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token for authentication
x-refined-from:
- simplismart-deepseek-r1-qwen-32b-openapi.yml
- simplismart-devstral-small-openapi.yml
- simplismart-gemma3-27b-openapi.yml
- simplismart-gemma3-4b-openapi.yml
- simplismart-llama-3.3-70b-openapi.yml
- simplismart-llama-4-maverick-17b-openapi.yml
- simplismart-llama-8b-openapi.yml
- simplismart-mixtral-8x7b-openapi.yml
- simplismart-qwen-32b-openapi.yml