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

# Get All Price Points

> Retrieves a list of all price points in USD cents.

<RequestExample>
  ```bash Get All Price Points theme={"system"}
    curl -X GET \
    'https://api.appcharge.com/v1/price-points' \
    -H 'Content-Type: application/json' \
    -H 'Accept: application/json' \
    -H 'x-publisher-token: <x-publisher-token>' \
  ```
</RequestExample>

<ResponseExample>
  ```json Get All Price Points theme={"system"}
  {
    "pricePoints": [
      {
        "priceInUsdCents": 499,
        "lastUpdate": "2026-02-15T08:30:00.000Z"
      },
      {
        "priceInUsdCents": 999,
        "lastUpdate": "2026-03-01T10:00:00.000Z"
      },
      {
        "priceInUsdCents": 1999,
        "lastUpdate": "2026-01-20T14:45:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml openapi-price-points.json get /v1/price-points
openapi: 3.1.0
info:
  title: Price Localization API
  description: API for managing price points and price localization
  version: 1.0.0
servers:
  - url: https://api.example.com
security: []
paths:
  /v1/price-points:
    get:
      summary: Get all Price Points
      description: Retrieves a list of all price points in USD cents.
      operationId: getAllPricePoints
      responses:
        '200':
          description: Price points retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  pricePoints:
                    type: array
                    items:
                      $ref: '#/components/schemas/PricePointSummary'
components:
  schemas:
    PricePointSummary:
      type: object
      properties:
        priceInUsdCents:
          type: number
          description: Base price in USD cents.
          example: 999
        lastUpdate:
          type: string
          format: date-time
          description: >-
            Timestamp indicating when the price point was last updated, in UTC
            ISO 8601 format.
          example: '2026-01-01T14:30:00Z'

````