Models

Models Available with w.ai

Current Models:

  • Llama models

  • SDXL image models

  • FLUX image models

  • Gemma models

  • Qwen models

and many more models available!

If there is a particular model you'd like to see on w.ai, let us know.


Models API Overview

The /v1/models endpoint provides a list of all the currently available models on the w.ai network, including essential metadata for easy integration into your application.

Endpoint

GET /v1/models

Description

This endpoint returns an array of available model objects, each detailing information such as name, creation time, and capabilities, helping you easily identify suitable models for your tasks.

Request

  • Method: GET

  • URL: https://api.w.ai/v1/models

Required Headers:

  • Authorization: Bearer <your_api_key>

  • Content-Type: application/json

Example Request

Response

Success (200 OK)

Returns a JSON object containing an array of available model objects with their respective metadata.

Example Response

Response Fields

  • data: Array containing model objects.

    • id: Unique identifier for the model.

    • object: Type of the object, typically model.

    • created: Unix timestamp indicating when the model was created.

    • name: The name identifier of the model.

Last updated