Skip to content

Quickstart

AnyCap uses one CLI and one authentication flow for image, video, audio, media understanding, web, Drive, and Page workflows.

  1. Install the CLI.

    Terminal window
    curl -fsSL https://anycap.ai/install.sh | sh
  2. Authenticate.

    Terminal window
    anycap login
  3. Verify the runtime.

    Terminal window
    anycap status
  4. Discover a model and run a capability.

    Terminal window
    anycap image models
    anycap image generate \
    --prompt "a paper crane on a wooden table" \
    --model <model-id> \
    -o paper-crane.png

The generate command validated your inputs, called the selected model, downloaded the finished asset, and returned one JSON document. Using -o gives the result a stable, descriptive filename.

{"status":"success","local_path":"/absolute/path/to/paper-crane.png","model":"<model-id>","credits_used":1,"request_id":"req_abc123"}