Autom

Introduction

Everything you need to integrate the Autom API into your application.

Get started with the Autom API in minutes. Make HTTP requests to our endpoints and receive structured JSON responses.

Quick Start

Get your API key

Sign up on your dashboard and copy your API key from the Settings page.

Make your first request

Include your key in the x-api-key header and call any endpoint:

curl "https://api.autom.dev/usage" \
  -H "x-api-key: YOUR_API_KEY"

Handle the response

Every successful request returns a JSON object with structured data. See individual endpoint pages for response schemas and examples.

Authentication

All API requests must include an x-api-key header. You can find your key in your dashboard settings.

curl -H "x-api-key: xxxx" https://api.autom.dev/v1/usage

Keep your API key secret. Do not expose it in client-side code or public repositories.

Status Codes

Billing applies to successful requests: 200 for synchronous calls, 201 for asynchronous jobs, and 404 when the resource is not found (unless specified otherwise in the API documentation).

CodeBilledStatusAction
200YesSuccessful API CallNo action required.
201YesJob CreatedNo action required.
202NoAccepted (Async)The request was accepted and is being processed. Use the job ID to check the status.
400NoBad RequestVerify your parameters and their types. Check the documentation for more information.
401NoInvalid API KeyCheck your API key (x-api-key header or x_api_key query string).
401NoInactive API KeyActivate your API key in the API Keys section of your account settings.
401NoExpired API KeyUpdate your API key or generate a new one.
401NoRate Limit ExceededConsider upgrading your current plan or contact our sales team.
402NoPayment RequiredSettle any outstanding invoices to continue using the API.
403NoForbiddenVerify your permissions. Contact us if you believe this is a mistake.
404YesNot FoundResult not found for this request. Some APIs do not bill 404.
500NoInternal ErrorRetry the action or contact our support team.

See the Credits page for a full breakdown of credit costs per endpoint.

Endpoints

Browse all available endpoints in the sidebar, or jump directly:

On this page