Skip to main content
GET
/
v1
/
models
Typescript (SDK)
import { RaijinLabsLucidAi } from "raijin-labs-lucid-ai";

const raijinLabsLucidAi = new RaijinLabsLucidAi();

async function run() {
  const result = await raijinLabsLucidAi.passports.searchModels();

  for await (const page of result) {
    console.log(page);
  }
}

run();
{
  "success": true,
  "models": [
    {
      "passport_id": "ppt_model_7xK9mQ2v",
      "type": "model",
      "name": "mistral-7b-instruct",
      "owner": "7xK9mQ2vNbPfYkRd3JhEzV1LnWqA8tUcGp4SyDfH5Bo",
      "status": "active",
      "metadata": {
        "format": "safetensors",
        "runtime_recommended": "vllm",
        "context_length": 32768
      },
      "created_at": 1710288000,
      "updated_at": 1710288000
    },
    {
      "passport_id": "ppt_model_Lm9pZ3nQ",
      "type": "model",
      "name": "llama-3-70b",
      "owner": "3fPnY7vUxKdNqB4JhMzRtD9wLcA2SgE6Hp8XkTuVm5Gj",
      "status": "active",
      "metadata": {
        "format": "api",
        "runtime_recommended": "trustgate"
      },
      "created_at": 1710374400,
      "updated_at": 1710374400
    }
  ],
  "pagination": {
    "total": 15,
    "page": 1,
    "per_page": 20,
    "total_pages": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.lucid.foundation/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Lucid API key (lk_live_... or lk_test_...)

Query Parameters

runtime
string

Filter by recommended runtime (vllm, tgi, tensorrt, trustgate, openai)

format
string

Filter by model format (safetensors, gguf, or api)

max_vram
integer

Maximum VRAM requirement in GB

available
enum<string>

Tri-state filter: 'true' returns only models that can serve inference (healthy compute or API-hosted), 'false' returns only unavailable models (missing compute), omit for all models

Available options:
true,
false
owner
string

Filter by model owner wallet address

tags
string

Comma-separated tag filter

Free-text search across model name and description

page
integer

Page number for pagination (starts at 1)

Required range: x >= 1
per_page
integer

Number of results per page (1-100)

Required range: 1 <= x <= 100

Response

OK

success
boolean
required
models
object[]
required
pagination
object
required