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

# Get an Agent Pod

> Returns a single pod you own, including its latest heartbeat and (when enabled) masked delegated-credential state. Authenticate with the same compute auth as `/compute/*` (API key, session bearer, or wallet signature).



## OpenAPI

````yaml GET /pods/{id}
openapi: 3.1.0
info:
  title: x402 Singularity Layer API
  description: >-
    OpenAPI-backed reference for marketplace discovery, payment routes,
    webhooks, wallet-first auth, agent endpoints, and ERC-8004 flows.
  version: 1.0.0
servers:
  - url: https://api.x402layer.cc
security: []
tags:
  - name: Marketplace
    description: Public discovery and listing lookup
  - name: Public Endpoints
    description: Public endpoint metadata and hosted checkout context
  - name: Public Payment Links
    description: Hosted public payment-link lookup
  - name: Payments
    description: Hosted x402 payment challenge routes
  - name: Receipts
    description: Signed receipt lookup and verification helpers
  - name: Ratings
    description: Public listing ratings and authenticated rating actions
  - name: Webhooks
    description: Seller webhook management API
  - name: Agent Auth
    description: Wallet-first challenge and verification routes
  - name: Agent Endpoints
    description: Create, read, top up, and delete agent endpoints
  - name: ERC-8004
    description: Agent registry and registration lifecycle routes
  - name: Marketplace Agents
    description: Public ERC-8004 marketplace discovery routes
  - name: Compute Catalog
    description: Compute plans, regions, and OS catalog
  - name: Compute Instances
    description: Provision, inspect, extend, and destroy compute instances
  - name: Compute API Keys
    description: API keys for compute agent access
  - name: Fundraiser Campaigns
    description: List, view, create, and edit fundraiser campaigns
  - name: Fundraiser Contributions
    description: Record and list campaign contributions
  - name: Fundraiser Comments
    description: Campaign comment threads
  - name: Fundraiser Media
    description: Campaign image uploads and OG images
  - name: Enterprise
    description: >-
      Enterprise partner configuration, endpoint listing, revenue stats, and
      transaction ledger
  - name: Staking
    description: Agentic $SGL staking
  - name: SGL Grid
    description: >-
      Decentralized, confidential, OpenAI-compatible inference served by
      attested TEE nodes.
  - name: Compute Credits
    description: Prepaid USDC credit balance shared across Machines and Grid.
  - name: Agent Pods
    description: >-
      Deploy and manage hosted agents (Agent Pods), plus the pod's
      OpenAI-compatible adapter for external clients.
paths:
  /pods/{id}:
    servers:
      - url: https://compute.x402layer.cc
    get:
      tags:
        - Agent Pods
      summary: Get an Agent Pod
      description: >-
        Returns a single pod you own, including its latest heartbeat and (when
        enabled) masked delegated-credential state. Authenticate with the same
        compute auth as `/compute/*` (API key, session bearer, or wallet
        signature).
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Pod detail
          content:
            application/json:
              schema:
                type: object
                properties:
                  pod:
                    allOf:
                      - $ref: '#/components/schemas/PodView'
                      - type: object
                        properties:
                          heartbeat:
                            type: object
                            nullable: true
                            properties:
                              status:
                                type: string
                              telemetry:
                                type: object
                              last_seen_at:
                                type: string
                                format: date-time
                          credentials:
                            type: object
                            nullable: true
                            description: >-
                              Masked delegated-credential state (never raw
                              keys). Null unless delegated credentials are
                              enabled.
        '404':
          description: Pod not found (or not owned by you).
components:
  schemas:
    PodView:
      type: object
      description: Public view of an Agent Pod (never leaks secrets).
      properties:
        id:
          type: string
          format: uuid
          description: Pod id (equals the compute order id).
        agent_id:
          type: string
        ai_mode:
          type: string
          enum:
            - managed
            - byok
        tier:
          type: string
          nullable: true
        model:
          type: string
          nullable: true
        channels:
          type: array
          items:
            type: string
        ai_included_usd:
          type: number
          description: Bundled managed-AI allowance (USD).
        ai_used_usd:
          type: number
          description: Managed-AI allowance consumed (USD).
        memory:
          type: object
          properties:
            backend:
              type: string
              example: raw
            lcm:
              type: boolean
        heartbeat_interval_sec:
          type: integer
          nullable: true
        status:
          type: string
          example: active
        provider:
          type: string
        region:
          type: string
        plan:
          type: string
        ip_address:
          type: string
          nullable: true
        expires_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
        is_trial:
          type: boolean
        trial_expires_at:
          type: string
          format: date-time
          nullable: true
        auto_renew_enabled:
          type: boolean
        auto_renew:
          type: boolean
        grace_days:
          type: integer
          nullable: true

````