> ## Documentation Index
> Fetch the complete documentation index at: https://docs.atlaswork.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Authenticated ping

> Proves the /v1 machine-auth boundary. Returns pong for a valid organization API key or scoped OAuth JWT.



## OpenAPI

````yaml /openapi.json get /api/v1/ping
openapi: 3.0.0
info:
  title: Atlas API
  version: 0.0.0
servers:
  - url: https://api.atlaswork.ai
security: []
paths:
  /api/v1/ping:
    get:
      tags:
        - v1
      summary: Authenticated ping
      description: >-
        Proves the /v1 machine-auth boundary. Returns pong for a valid
        organization API key or scoped OAuth JWT.
      responses:
        '200':
          description: Credential accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V1PingResponse'
        '401':
          description: Missing or invalid API key or OAuth access token
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  details:
                    type: object
                    additionalProperties:
                      nullable: true
                required:
                  - code
                  - message
      security:
        - apiKey: []
        - oauthJwt: []
components:
  schemas:
    V1PingResponse:
      type: object
      properties:
        pong:
          type: boolean
          enum:
            - true
      required:
        - pong
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        Organization API key (format `atlas_sk_...`), passed as a bearer token
        or the x-api-key header. Created and revoked in the dashboard (Better
        Auth api-key plugin); shown in full only once and stored hashed.
    oauthJwt:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Better Auth OAuth resource access token. The token audience must match
        the Atlas MCP resource and include the scope required by the route.

````