Redeo Docs
DocsAPI Reference / Ladder Info

Ladder API

Ladder Info

Get ladder metadata and config.

Overview

GET /v1/{author}/{ladder} returns metadata about a ladder; its name, description, version, and visibility settings. If the caller owns the ladder or it has public config visibility, the full LADR 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 ladder or config_visibility is public.

Example

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