# Glob.AI public API

Base URL: `https://glob.ai`

Two endpoints are callable without authentication. Everything else on this
origin requires a browser session — see [/auth.md](/auth.md) for how
authentication works and what agent access exists today.

A machine-readable description of this surface is at
[/openapi.json](/openapi.json); the discovery catalog is at
[/.well-known/api-catalog](/.well-known/api-catalog).

## GET /api/catalog

The AI Pods catalog (groups, offerings, capabilities, per-token pricing),
rendered for the anonymous audience. When the platform hides prices for
anonymous viewers, `price_unit` is `""` and price fields are not meaningful.

```
curl -s https://glob.ai/api/catalog
```

```json
{
  "version": "1.20.0",
  "groups": [
    {
      "name": "Modernization",
      "description": "Transform aging systems into strategic assets. …",
      "offerings": [ { "name": "Legacy Modernization Assessment", "sku_id": "…", "…": "…" } ]
    }
  ],
  "offerings": [ "… flat list, ordered by sort_order …" ]
}
```

## GET /api/v1/health

Platform API health.

```
curl -s https://glob.ai/api/v1/health
```

```json
{ "status": "ok", "version": "0.1.0" }
```

## Other agent-facing resources

- [/llms.txt](/llms.txt) — site overview for agents
- [/llms-full.txt](/llms-full.txt) — full site content in one markdown file
- [/.well-known/agent-skills/index.json](/.well-known/agent-skills/index.json) — published agent skills
- [/.well-known/mcp/server-card.json](/.well-known/mcp/server-card.json) — orchestrator MCP server card (local stdio)
