openapi: 3.1.1 info: title: Augment API Key API description: 'Augment is now SOC 2 Type II Certified The Augment API endpoints are calls your system makes to manage loads, carriers, and webhook configuration. The latest version of the Augment API is hosted [online](https://apidocs.goaugment.com). ## API Endpoints Endpoints your system calls to interact with Augment: - [Load Management](/reference/tag/load-management) - [Carrier Management](/reference/tag/carrier-management) - [Models](/reference/models) - [Webhook Endpoints](/reference/tag/webhook-endpoints) - [Webhook Event Subscriptions](/reference/tag/webhook-event-subscriptions) Webhook management access is gated. Request access from Augment before using these endpoints. After access is enabled, you can self-manage the webhook endpoints that receive event payloads and the webhook event subscriptions that control which events are sent to each endpoint. Use [Webhook Endpoints](/reference/tag/webhook-endpoints) to create and update the HTTPS destinations where Augment sends webhook payloads. Use [Webhook Event Subscriptions](/reference/tag/webhook-event-subscriptions) to choose event types for each endpoint and send test deliveries. Outbound webhook payloads, including Track & Trace events, are documented separately in the [Webhooks](/webhooks) reference. Subscriptions created through the public webhook management APIs deliver version 2 webhook payloads only. ## Resources * [Homepage](https://www.goaugment.com) * [LinkedIn](https://www.linkedin.com/company/goaugment) * [Jobs - we''re hiring!](https://jobs.ashbyhq.com/go-augment?utm_source=AMy24qx30n) ## Developer Notes All date-time fields are represented as strings. The date-time notation is defined by [RFC 3339, section 5.6](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6). Examples: - `2025-08-21T12:34:56Z` - `2025-08-21T04:34:56-08:00` However, when using local time, do not include the trailing `Z` or timezone offset in the date-time string. Example: - `2025-08-21T12:34:56` ' version: 20.0.1 servers: - url: https://api.prod.goaugment.com security: - httpBasic: [] tags: - name: API Key description: 'API key based authorization. Please refer to the [authorization documentation](docs/authorization.md) for details. ' paths: /v2/auth-check: post: operationId: verifyApiKey security: - httpBasic: [] tags: - API Key summary: Verify your API key description: 'Verify your API key is valid and not revoked. Use our auth check endpoint to verify your API key without writing data to your account. Great for setup and troubleshooting, but not intended for automated production health checks. ' responses: '200': description: API key is verified content: text/plain: schema: type: string '401': description: Unauthorized content: application/json: schema: $ref: '#/components/schemas/AuthCheckError' components: schemas: AuthCheckError: type: object required: - message - requestId - timestamp x-property-order: - message - requestId - timestamp properties: message: type: string description: Human-readable error message example: Invalid key requestId: type: string format: uuid description: Unique requestId for troubleshooting example: a1b0fce9-075a-4ad3-87fd-f307c51d2298 timestamp: type: string description: Unix timestamp of the error in milliseconds example: '1760136207000' securitySchemes: httpBasic: type: http scheme: basic description: 'Authenticate with HTTP Basic auth by sending an empty username and your API key as the password, equivalent to encoding : in the Basic credential. ' x-ext-urls: {}