Artifact Review Docs

Agent Resources

Machine-readable endpoints for AI agents and developer tools.

Artifact Review exposes several machine-readable endpoints that help AI agents, crawlers, and developer tools discover and interact with the platform.

Discovery Endpoints

EndpointFormatDescription
/llms.txtPlain textLLM-readable site context per the llms.txt spec. Start here.
/.well-known/agent.jsonJSONA2A Agent Card with capabilities, skills, and auth scheme.
/sitemap.xmlXMLStandard sitemap for crawlers.
/robots.txtPlain textCrawler directives.

API Specification

The full API is documented in OpenAPI 3.1 format. The base URL and spec location are listed in both /llms.txt and the Agent Card.

ResourceDescription
GET /api/v1API discovery — returns auth scheme, endpoints, and capabilities.
GET /api/v1/openapi.yamlOpenAPI 3.1 specification.
GET /api/v1/healthUnauthenticated health check.

Authentication

All API endpoints require an API key passed via the X-API-Key header or as a Bearer token. Keys use the ar_live_ prefix.

Create and manage keys in Settings > API Keys.

  1. Fetch /llms.txt or /.well-known/agent.json to discover the API
  2. Retrieve the OpenAPI spec for full endpoint details
  3. Authenticate with an API key
  4. Publish artifacts, retrieve feedback, manage versions

On this page