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

const raijinLabsLucidAi = new RaijinLabsLucidAi();

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

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

run();
{
  "success": true,
  "passports": [
    {
      "passport_id": "ppt_model_7xK9mQ2v",
      "type": "model",
      "owner": "7xK9mQ2vNbPfYkRd3JhEzV1LnWqA8tUcGp4SyDfH5Bo",
      "name": "mistral-7b-instruct",
      "status": "active",
      "created_at": 1710288000,
      "updated_at": 1710288000
    },
    {
      "passport_id": "ppt_agent_Qm3kR8wZ",
      "type": "agent",
      "owner": "3fPnY7vUxKdNqB4JhMzRtD9wLcA2SgE6Hp8XkTuVm5Gj",
      "name": "trading-agent-v2",
      "status": "active",
      "created_at": 1710374400,
      "updated_at": 1710374400
    }
  ],
  "pagination": {
    "total": 42,
    "page": 1,
    "per_page": 20,
    "total_pages": 3
  }
}

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

type

Filter by passport type (model, compute, tool, dataset, agent)

Available options:
model,
compute,
tool,
dataset,
agent,
voice,
other
owner
string

Filter by owner wallet address (Solana base58 or EVM 0x)

status

Filter by passport status (active, deprecated, revoked)

Available options:
active,
deprecated,
revoked
tags
string

Comma-separated

tag_match
enum<string>

Tag matching mode - all (every tag must match) or any (at least one)

Available options:
all,
any

Free-text search across name, description, and tags

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
sort_by
enum<string>

Sort field (created_at, updated_at, or name)

Available options:
created_at,
updated_at,
name
sort_order
enum<string>

Sort direction (asc or desc)

Available options:
asc,
desc

Response

OK

success
boolean
required
passports
object[]
required
pagination
object
required