Fireworks AI gateway-extra.openapi_Gateway API

The gateway-extra.openapi_Gateway API from Fireworks AI — 1 operation(s) for gateway-extra.openapi_gateway.

Operations 1

POST /v1/accounts/{account_id}/datasets/{dataset_id}:upload Upload Dataset Files #

Documentation

Specifications

Other Resources

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/fireworks-ai-gateway-extra-openapi-gateway-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

fireworks-ai-gateway-extra-openapi-gateway-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fireworks AI Anthropic Compatible Messages anthropic-messages.openapi_other Gateway Extra.openapi Gateway API
  description: Anthropic-compatible Messages API endpoint for Fireworks AI inference
  version: 1.0.0
servers:
- url: https://api.fireworks.ai/inference
security:
- BearerAuth: []
tags:
- name: gateway-extra.openapi_Gateway
  x-displayName: Gateway
paths:
  /v1/accounts/{account_id}/datasets/{dataset_id}:upload:
    servers:
    - url: https://api.fireworks.ai
    post:
      summary: Upload Dataset Files
      description: 'Provides a streamlined way to upload a dataset file in a single API request. This path can handle file sizes up to 150Mb. For larger file sizes use [Get Dataset Upload Endpoint](get-dataset-upload-endpoint).

        '
      operationId: Gateway_UploadDatasetFile
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FileUploadResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Internal Server Error
      parameters:
      - name: account_id
        in: path
        required: true
        description: The account id
        schema:
          type: string
      - name: dataset_id
        in: path
        required: true
        description: The dataset id
        schema:
          type: string
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
        required: true
      tags:
      - gateway-extra.openapi_Gateway
      security:
      - BearerAuth: []
components:
  schemas:
    FileUploadResponse:
      type: object
      properties:
        id:
          type: string
          description: The dataset id.
        object:
          type: string
          description: The object type, which is always file.
        bytes:
          type: integer
          format: int64
          description: The size of the file, in bytes.
        created_at:
          type: integer
          format: int64
          description: The Unix timestamp (in seconds) for when the file was created.
        filename:
          type: string
          description: The name of the file.
        purpose:
          type: string
          description: The intended purpose of the file.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>'
      bearerFormat: API_KEY