Visitar Link CLI

There is no separate binary to install. Agents and developers script Visitar Link through the HTTP API. Bind tools from the OpenAPI spec at https://visitarlink.com/openapi.json — every operation has a unique operationId.

curl -sS https://visitarlink.com/api/v1
curl -sS https://visitarlink.com/openapi.json
curl -sS -H "Accept: text/markdown" https://visitarlink.com/

Create a short link with a dashboard API key:

curl -sS https://visitarlink.com/api/v1/links \
  -H "Authorization: Bearer vl_live_…" \
  -H "Content-Type: application/json" \
  -d '{"destination":"https://example.com","slug":"portfolio"}'

Rate limits are advertised on every response in the RateLimit headers. A 429 includes Retry-After.