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

# Inspect Pricing

> Inspect and parse pricing, routing details, and payment parameters for a given Marketplace service URL.

Inspect the x402 pricing requirements for a specific service URL before committing to payment.


## OpenAPI

````yaml POST /v1/marketplace/inspect
openapi: 3.1.0
info:
  title: Aegis Secure API
  description: >-
    Zero-trust API for Developer-Controlled Wallets (DCW) and programmatic
    Policy Engine controls.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.aegisintent.xyz
    description: Production API Server
security: []
paths:
  /v1/marketplace/inspect:
    post:
      tags:
        - Marketplace API (x402)
      summary: Inspect Service Resource
      description: >-
        Inspect and parse pricing, routing details, and payment parameters for a
        given Marketplace service URL.
      parameters:
        - name: X-Aegis-Email
          in: header
          required: true
          schema:
            type: string
          description: Agent email address
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - serviceUrl
              properties:
                serviceUrl:
                  type: string
                  format: uri
                method:
                  type: string
                  enum:
                    - GET
                    - POST
                    - PUT
                    - DELETE
                    - PATCH
                data:
                  type: object
                headers:
                  type: array
                  items:
                    type: object
      responses:
        '200':
          description: Service resource details parsed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  requiredPaymentUsdc:
                    type: string
      security:
        - BearerAuth: []
        - AegisEmail: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Provide raw API session token issued by `/v1/connect/complete`
    AegisEmail:
      type: apiKey
      in: header
      name: X-Aegis-Email
      description: Dual-header token holder identity confirmation

````