Skip to content
Get started

Create

client.uploads.create(UploadCreateParams { assetOptions, civitaiModelUrl, contentType, 6 more } body, RequestOptionsoptions?): UploadCreateResponse { upload }
POST/uploads

Create a temporary upload URL for a file. Support multipart uploads. Return a list of URLs for each part of the file.

ParametersExpand Collapse
body: UploadCreateParams { assetOptions, civitaiModelUrl, contentType, 6 more }
assetOptions?: AssetOptions

Asset extra options. Only available for kinds which produce an asset. (Not available for model kind)

collectionIds?: Array<string>

The collection ids to add the asset to.

hide?: boolean

Specify if the asset should be hidden from the user.

parentId?: string

The parentId of the asset.

civitaiModelUrl?: string
contentType?: string

Required for multipart upload. The MIME type of the file (example: “image/jpeg”)

fileName?: string

Required for multipart upload. The original file name of the image (example: “low-res-image.jpg”). It will be ignored if assetId is provided.

fileSize?: number

Required for multipart upload. The size of the file in bytes

huggingFaceModelName?: string

The huggingface.co modelName (example: “stabilityai/stable-diffusion-xl-base-1.0”). No need to setup other fields if you setup huggingFaceModelName

kind?: "3d" | "asset" | "audio" | 4 more

Required for multipart upload and url. The purpose of the file once validated (example: “model”)

One of the following:
"3d"
"asset"
"audio"
"avatar"
"image"
"model"
"video"
parts?: number

Required for multipart upload. The number of parts the file will be uploaded in

maximum10000
minimum1
url?: string

The url where to download the file. If you setup url you MUST setup kind as well.

ReturnsExpand Collapse
UploadCreateResponse { upload }
upload: Upload { id, authorId, createdAt, 18 more }
id: string
authorId: string
createdAt: string
fileName: string
kind: "3d" | "asset" | "audio" | 4 more

The kind of the file once validated (example: “model”)

One of the following:
"3d"
"asset"
"audio"
"avatar"
"image"
"model"
"video"
ownerId: string
source: "civitai" | "huggingface" | "multipart" | 2 more
One of the following:
"civitai"
"huggingface"
"multipart"
"other"
"url"
status: "complete" | "failed" | "imported" | 3 more
One of the following:
"complete"
"failed"
"imported"
"pending"
"validated"
"validating"
updatedAt: string
assetOptions?: AssetOptions { collectionIds, hide, parentId }
collectionIds?: Array<string>

The collection ids to add the asset to.

hide?: boolean

Specify if the asset should be hidden from the user.

parentId?: string

The parentId of the asset.

config?: unknown
contentType?: string
entityId?: string
errorMessage?: string
fileSize?: number
jobId?: string
originalFileName?: string
parts?: Array<Part>
expires: string
number: number
url: string
partsCount?: number
provider?: "civitai" | "huggingface" | "other"
One of the following:
"civitai"
"huggingface"
"other"
url?: string

Create

import Scenario from '@scenario-labs/sdk';

const client = new Scenario({
  apiKey: process.env['SCENARIO_SDK_API_KEY'], // This is the default and can be omitted
  apiSecret: process.env['SCENARIO_SDK_API_SECRET'], // This is the default and can be omitted
});

const upload = await client.uploads.create();

console.log(upload.upload);
{
  "upload": {
    "id": "id",
    "authorId": "authorId",
    "createdAt": "createdAt",
    "fileName": "fileName",
    "kind": "3d",
    "ownerId": "ownerId",
    "source": "civitai",
    "status": "complete",
    "updatedAt": "updatedAt",
    "assetOptions": {
      "collectionIds": [
        "string"
      ],
      "hide": true,
      "parentId": "parentId"
    },
    "config": {},
    "contentType": "contentType",
    "entityId": "entityId",
    "errorMessage": "errorMessage",
    "fileSize": 0,
    "jobId": "jobId",
    "originalFileName": "originalFileName",
    "parts": [
      {
        "expires": "expires",
        "number": 0,
        "url": "url"
      }
    ],
    "partsCount": 0,
    "provider": "civitai",
    "url": "url"
  }
}
Returns Examples
{
  "upload": {
    "id": "id",
    "authorId": "authorId",
    "createdAt": "createdAt",
    "fileName": "fileName",
    "kind": "3d",
    "ownerId": "ownerId",
    "source": "civitai",
    "status": "complete",
    "updatedAt": "updatedAt",
    "assetOptions": {
      "collectionIds": [
        "string"
      ],
      "hide": true,
      "parentId": "parentId"
    },
    "config": {},
    "contentType": "contentType",
    "entityId": "entityId",
    "errorMessage": "errorMessage",
    "fileSize": 0,
    "jobId": "jobId",
    "originalFileName": "originalFileName",
    "parts": [
      {
        "expires": "expires",
        "number": 0,
        "url": "url"
      }
    ],
    "partsCount": 0,
    "provider": "civitai",
    "url": "url"
  }
}