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

# Get Marketplace Listing

> Get Bazaar-compatible service listing for AI agent discovery.

Returns structured listing that AI agents can parse to discover
available endpoints, pricing, and payment methods.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/sales/listing
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/sales/listing:
    get:
      tags:
        - Sales
      summary: Get Marketplace Listing
      description: |-
        Get Bazaar-compatible service listing for AI agent discovery.

        Returns structured listing that AI agents can parse to discover
        available endpoints, pricing, and payment methods.
      operationId: get_marketplace_listing_v1_sales_listing_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Get Marketplace Listing V1 Sales Listing Get
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````