Models
GEThttps://zylai-a779.zyllion.network/v1/models
info
Feel free to use the Zyllion2025
as a test Bearer Token
List all available models in the system.
user: Authenticated user information (through HTTP Bearer header)
Returns: Dictionary of available models
Example
# Retrieves list of available models
models = await get_models(user)
Responses
200
Successful Response
application/json
Schema
Example (auto)
curl
dart
go
http
java
javascript
kotlin
c
nodejs
objective-c
ocaml
php
powershell
python
r
ruby
rust
shell
swift
HTTPCLIENT
RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://zylai-a779.zyllion.network/v1/models");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
RequestCollapse all
Send API RequestResponseClear
Click the Send API Request
button above and see the response here!
Last updated