Actobase Actobase sells hosted website utilities. Agent surfaces: - /llms.txt - /offer.json - /openapi.json - /install/ - /install/release.json - /watch/offer.json - /qa/offer.json - https://github.com/actobase/actobase-cli Fastest shared-account path: ```bash curl -X POST "https://actobase.com/watch/api/start" \ -H "Content-Type: application/json" \ -d '{"target_url":"https://example.com","mode":"http","interval_seconds":60}' curl "https://actobase.com/watch/api/account" \ -H "Authorization: Bearer ACTOBASE_API_KEY" curl -X POST "https://actobase.com/qa/api/start" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer ACTOBASE_API_KEY" \ -d '{"site_url":"https://example.com","qa_focus":"copy","cadence":"one_time"}' ``` Commercial flow: - request the utility - receive an API key immediately on first request - receive the exact next step - top up or pay if needed - enable paid resource use after payment confirmation or credited balance - live JSON responses include `machine_surfaces` and `next_actions` for follow-up calls - watch and account responses return account-scoped Stripe links with `client_reference_id=` Current live utility: - Hosted Watch - path: /watch/ - request endpoint: POST /watch/api/start - account endpoint: GET /watch/api/account - auth endpoints: - GET|POST|DELETE /watch/api/auth/api-key - GET|POST|DELETE /watch/api/auth/session - modes: - http: 1 credit per check - html: 3 credits per check - ai_html: 30 credits per check - ai_image: 100 credits per check Hosted Watch pricing: - Hosted Watch Pilot: $39 one-time - includes one workspace, one API key, one active watch, and the first 100,000 standard credits - monthly credits: $9 / month per 100,000 credits - one-time credits: $9 per 100,000 credits - payments handled through Stripe Watch quick start with curl: ```bash curl -X POST "https://actobase.com/watch/api/start" \ -H "Content-Type: application/json" \ -d '{ "target_url": "https://example.com", "mode": "http", "interval_seconds": 60 }' ``` The response includes: - `request_id` - `estimate` - `account.account_id` - `account.balance_cents` - `account.usage_state` - `account.api_key.token` Then inspect the account: ```bash curl "https://actobase.com/watch/api/account" \ -H "Authorization: Bearer ACTOBASE_API_KEY" ``` QA requests: - Hosted QA - path: /qa/ - request endpoint: POST /qa/api/start - deterministic pricing units: - copy route pass: $12 per route - visual page-state check: $15 per page state - extra long-page slice: $6 when needed - agentic investigation: $39 per escalated issue only when needed - saved reruns: from $29 after the first accepted step set - current scope: - one-time visual checks across breakpoints and long pages - one-time copy checks across selected routes - saved reruns only after scope review - on-deploy only after github access or deploy-hook review - current commercial path: - request first - receive the account key immediately - receive the scoped step list and exact price - approve payment after scope - run the accepted steps - add investigation only when needed QA quick start with curl: ```bash curl -X POST "https://actobase.com/qa/api/start" \ -H "Content-Type: application/json" \ -d '{ "site_url": "https://example.com", "qa_focus": "copy", "cadence": "one_time" }' ``` Reuse the same key across services: ```bash curl -X POST "https://actobase.com/qa/api/start" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer ACTOBASE_API_KEY" \ -d '{ "site_url": "https://example.com", "qa_focus": "visual_copy", "cadence": "one_time" }' ``` Access: - API key first - session bootstrap available after API key issuance - contact email optional for receipts and recovery CLI install surface: - install page: /install/ - release manifest: /install/release.json - current public asset family: /downloads/ - github repo: https://github.com/actobase/actobase-cli - source install: `cargo install --git https://github.com/actobase/actobase-cli --bin actobase` OpenAPI surface: - spec: /openapi.json - use this for direct connector or HTTP-client setup against the live public endpoints