Models

At the moment, Skytells supports the following models on our general-purpose API:

ModelVendorTypeDescription
TrueFusionSkytellsImage GenerationGenerate images from text.
TrueFusion ProSkytellsImage GenerationGenerate images from text.
TrueFusion MaxSkytellsImage GenerationGenerate images from text.
TrueFusion PanoSkytellsImage GenerationGenerate images from text.
TrueFusion VideoSkytellsVideo GenerationGenerate videos from text.
TrueFusion Video ProSkytellsVideo GenerationGenerate videos from text.
Imagen3GoogleImage GenerationGenerate images from text.
SanaNVIDIAImage GenerationGenerate images from text.

GET/v1/models

Available Models

This endpoint allows you to retrieve a paginated list of all models. By default, a maximum of ten models are shown per page.

This endpoint is public and useful for getting the list of models and their parameters, You may also use it to check the status of the model, if it is operational or not.

Optional attributes

  • Name
    limit
    Type
    integer
    Description

    Limit the number of models returned.

  • Name
    offset
    Type
    integer
    Description

    Offset the returned models.

  • Name
    vendor
    Type
    object
    Description

    The vendor of the model.

  • Name
    type
    Type
    string
    Description

    The type of the model.

  • Name
    status
    Type
    string
    Description

    The status of the model. operational or offline.

Rate Limits

This endpoint is public and does not count towards your rate limits. However, you may still be rate limited by the public API limiter.

Request

GET
/v1/models
curl -G https://api.skytells.ai/v1/models \
  -H "x-api-key: {api_key}" \
  -d limit=10

Response

{
  "has_more": false,
  "models": [
    {
      "name": "TrueFusion",
      "description": "TrueFusion Standard",
      "namespace": "truefusion",
      "type": "image",
      "privacy": "public",
      "vendor": {
        "name": "Skytells",
        "description": "Skytells is a cutting-edge AI company at the forefront of technological innovation. With a mission to transform industries and empower businesses.",
        "image_url": "IMAGE_URL",
        "verified": true,
        "slug": "skytells",
        "metadata": null
      },
      "billable": true,
      "pricing": {
        "amount": 0.003,
        "currency": "USD",
        "unit": "image"
      },
      "status": "operational"
    }
  ]
}

TrueFusion

TrueFusion is a model that can generate images from text with a focus on realism and detail. To learn more about the TrueFusion family, please refer to the TrueFusion Model Card.

The TrueFusion model for image-generation is available in four variants:

  • TrueFusion: API name truefusion
  • TrueFusion Pro: API name truefusion-pro
  • TrueFusion Max: API name truefusion-max
  • TrueFusion Pano: API name truefusion-pano

While the TrueFusion models for videos are available in 2 variants:

  • TrueFusion Video: API name truefusion-video
  • TrueFusion Video Pro: API name truefusion-video-pro

Each variant has different parameters, inference time, and capabilities.

ModelCostInference TimeNamespacesResolution
TrueFusion$0.03 per image~10 - 60 secondstruefusion1MP
TrueFusion Pro$0.05 per image~4 - 38 secondstruefusion-pro2MP
TrueFusion Max$0.08 per image~2 - 18 secondstruefusion-max4MP
TrueFusion Pano$0.03 per image~10 - 60 secondstruefusion-pano2MP
TrueFusion Video$0.112 per second~1 - 6 minutestruefusion-video720p
TrueFusion Video Pro$0.196 per second~1 - 5 minutestruefusion-video-pro1080p

You may reduce your billing costs by reducing the number of images, steps, and the size and aspect ratio of the image.

Parameters

ParameterTrueFusionTrueFusion ProTrueFusion MaxTrueFusion Pano
prompt
width
height
num_inference_steps
guidance_scale
seed
num_images
output_format
output_quality

Was this page helpful?