Kaedim Generation API

Submit images for 3D asset generation

Operations 1

POST /process Submit images for 3D generation #

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/kaedim-generation-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

kaedim-generation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Kaedim Web Assets Generation API
  version: v1
  x-apievangelist-generated: '2026-07-19'
  x-apievangelist-method: generated
  x-apievangelist-source: https://docs.kaedim3d.com/enterprise-features/custom-integrations/apis/web-api
  description: The Kaedim Web API lets Enterprise customers integrate Kaedim's AI 2D-to-3D asset generation into internal 3D modelling pipelines and user-facing applications. Submit images (photos, sketches, concept art), poll or receive results via webhook, and download generated models in obj, fbx, glb, gltf, mtl and usd formats. This description is generated by the API Evangelist enrichment pipeline from Kaedim's published Web API documentation; it is not an official Kaedim OpenAPI definition.
  contact:
    name: Kaedim Support
    email: support@kaedim3d.com
    url: https://docs.kaedim3d.com/enterprise-features/custom-integrations/apis/web-api
servers:
- url: https://api.kaedim3d.com/api/v1
  description: Production
security:
- ApiKeyAuth: []
  BearerAuth: []
tags:
- name: Generation
  description: Submit images for 3D asset generation
paths:
  /process:
    post:
      tags:
      - Generation
      summary: Submit images for 3D generation
      description: Submits up to 6 images (5MB each) for 3D asset generation at a chosen level of quality. Returns a requestID to track the generation, which is delivered asynchronously via the registered webhook.
      operationId: processImage
      security:
      - ApiKeyAuth: []
        BearerAuth: []
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - devID
              - LoQ
              properties:
                devID:
                  type: string
                imageUrls:
                  type: array
                  items:
                    type: string
                    format: uri
                  description: Up to 6 image URLs (mutually exclusive with images).
                images:
                  type: array
                  items:
                    type: string
                    format: binary
                  description: Up to 6 uploaded images, 5MB limit each.
                LoQ:
                  type: string
                  enum:
                  - standard
                  - high
                  - ultra
                  description: Level of quality.
                test:
                  type: boolean
                  description: Run in test mode without consuming credits.
                polycount:
                  type: number
                height:
                  type: number
                  description: Default 200 (cm).
                width:
                  type: number
                depth:
                  type: number
                projectID:
                  type: string
                studioID:
                  type: string
      responses:
        '201':
          description: Generation request accepted.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  devID:
                    type: string
                  requestID:
                    type: string
                  message:
                    type: string
        '400':
          description: Invalid payload or headers.
        '406':
          description: Invalid level of quality.
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Enterprise API key from Settings > API Keys in the Kaedim app.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT obtained via /registerHook, refreshed via /refreshJWT every 12 hours.