> ## 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 Endpoint Pricing

> Get dynamic pricing for a specific endpoint.

Args:
    endpoint_path: API endpoint path (e.g., v1/entity/check)
    monthly_calls: Caller's monthly usage for volume discount



## OpenAPI

````yaml /api-reference/openapi.json get /v1/sales/pricing/{endpoint_path}
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/pricing/{endpoint_path}:
    get:
      tags:
        - Sales
      summary: Get Endpoint Pricing
      description: |-
        Get dynamic pricing for a specific endpoint.

        Args:
            endpoint_path: API endpoint path (e.g., v1/entity/check)
            monthly_calls: Caller's monthly usage for volume discount
      operationId: get_endpoint_pricing_v1_sales_pricing__endpoint_path__get
      parameters:
        - name: endpoint_path
          in: path
          required: true
          schema:
            type: string
            title: Endpoint Path
        - name: monthly_calls
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Monthly Calls
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Get Endpoint Pricing V1 Sales Pricing  Endpoint Path 
                  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````