Skip to main content
The models endpoint provides information about the available Fortytwo Network model presets. Each preset represents AI capabilities running across distributed nodes.

List Models Endpoint

Retrieve a list of all available models that can be used for chat completions.

Endpoint

Request

Response

The API returns a list of model objects in OpenAI-compatible format:

Response Fields

array
List of available model objects.
string
Always “list” for this endpoint.

Model Object Fields

string
Unique identifier for the model (use this in chat completions).
string
Always “model”.
string
Organization that owns or operates the model.
array
Model permissions and capabilities.

Using Models

Once you’ve retrieved the list of available models, you can use any model ID in your ‘Chat Completions’ requests:

OpenAI Compatibility

The Models endpoint is fully compatible with OpenAI’s models API format. You can use the same client libraries and code:

Next Steps