GET
/
api
/
v1
/
video2video
/
modellist
Model List
curl --request GET \
  --url https://api.goenhance.ai/api/v1/video2video/modellist \
  --header 'Authorization: Bearer <token>'
{
  "code": 0,
  "msg": "Success",
  "data": [
    {
      "name": "Recommend",
      "list": [
        {
          "value": 5,
          "label": "Cute Anime Style",
          "isVip": false
        },
        {
          "value": 23,
          "label": "PS Game",
          "isVip": false,
          "isNew": true
        },
        {
          "value": 22,
          "label": "Pixar Style v1.1",
          "isVip": false
        },
        {
          "value": 18,
          "label": "Cute Anime v1.1",
          "isVip": false
        },
        {
          "value": 19,
          "label": "Japanese Anime v1.1",
          "isVip": false
        },
        {
          "value": 20,
          "label": "Clay Cartoon v1.1",
          "isVip": false,
          "discount": 20
        },
        {
          "value": 21,
          "label": "Story Illustration",
          "isVip": false
        },
        {
          "value": 3,
          "label": "Pop Art Style",
          "isVip": false
        },
        {
          "value": 6,
          "label": "Pixar Style",
          "isVip": false
        },
        {
          "value": 17,
          "label": "Clay Cartoon Style",
          "isVip": false,
          "discount": 20
        },
        {
          "value": 2,
          "label": "Anime Style 2",
          "isVip": false
        },
        {
          "value": 12,
          "label": "Vintage Ink Style",
          "isVip": false,
          "tip": "Gender recognition may be weak"
        },
        {
          "value": 8,
          "label": "Origami Style",
          "isVip": false
        },
        {
          "value": 15,
          "label": "Pixel Style 2(Strong)",
          "isVip": false
        },
        {
          "value": 10,
          "label": "Japanese Anime Style",
          "isVip": false
        },
        {
          "value": 11,
          "label": "3D CG Style",
          "isVip": false
        },
        {
          "value": 13,
          "label": "Doodles Style",
          "isVip": false
        },
        {
          "value": 16,
          "label": "Illustration Style",
          "isVip": false
        },
        {
          "value": 14,
          "label": "Line Style(Strong)",
          "isVip": false
        },
        {
          "value": 7,
          "label": "Anime Style",
          "isVip": false
        },
        {
          "value": 4,
          "label": "Ink Painting Style",
          "isVip": false
        },
        {
          "value": 9,
          "label": "Pencil Style",
          "isVip": false
        },
        {
          "value": 1,
          "label": "Pixel Style",
          "isVip": false
        }
      ]
    }
  ]
}

Overview

The Video to Video Model List API provides a complete catalog of all available AI models for transforming videos. Use this endpoint to discover model options, understand their capabilities, and select the appropriate model for your specific video transformation needs.

Usage Examples

This endpoint is useful for:
  • Building model selection interfaces in your application
  • Discovering the latest available transformation models
  • Understanding parameter options for each model
  • Viewing sample outputs to select the most appropriate model
For implementation details on using a specific model, refer to the Generate Video API documentation.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

The response is of type object.