Redeo Docs
DocsAPI Reference / Stilt Info

Stilt API

Stilt Info

Get stilt metadata and config.

Overview

GET /v1/{author}/{stilt} returns metadata about a stilt — its name, description, version, and visibility settings. If the caller owns the stilt or it has public config visibility, the full LukiScript config is included.

Response Shape

json
{
  "id": "uuid",
  "author": "redeo-labs",
  "name": "Gated Tree of Thought",
  "description": "Draft, evaluate, prune, synthesize.",
  "version": 3,
  "usage_visibility": "public",
  "config_visibility": "public",
  "created_at": "2026-03-15T10:00:00Z",
  "updated_at": "2026-04-20T14:30:00Z",
  "config": { ... },
  "allowed_targets": { "strategy": "universal" }
}

The config and allowed_targets fields are only included when the caller owns the stilt or config_visibility is public.

Example

bash
curl https://api.redeo.ai/v1/redeo-labs/gated-tot \
  -H "Authorization: Bearer $REDEO_API_KEY"