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

# Domain Pricing

> List the extensions available for registration together with their
yearly list prices, net of VAT.




## OpenAPI

````yaml get /domains/pricing
openapi: 3.1.0
info:
  title: APIFiddle Sample Definition
  version: 0.0.0
  description: Example workspace
servers:
  - url: https://rdp.sh/api/v1
    description: Default production endpoint.
security: []
paths:
  /domains/pricing:
    get:
      summary: List domain pricing
      description: |
        List the extensions available for registration together with their
        yearly list prices, net of VAT.
      operationId: listDomainPricing
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                title: ListDomainPricingOk
                items:
                  $ref: '#/components/schemas/domainExtensionPricing'
          description: Every extension RDP.sh currently sells, ordered by extension.
      security:
        - Authorization: []
components:
  schemas:
    domainExtensionPricing:
      type: object
      required: []
      properties:
        tld:
          type: string
          examples:
            - com
        description:
          type: string
          nullable: true
          examples:
            - The most recognised extension on the internet.
        currency:
          type: string
          examples:
            - EUR
        registration_price:
          type: number
          examples:
            - 10
        renewal_price:
          type: number
          examples:
            - 12
        transfer_price:
          type: number
          examples:
            - 11
        searchable:
          type: boolean
          description: |
            Whether the extension is offered in the search on rdp.sh itself.
            It does not restrict this API: `GET /domains/search` and
            `POST /domains` accept every extension listed here.
      description: Yearly list prices for one extension, in EUR and net of VAT.
  securitySchemes:
    Authorization:
      in: header
      name: Authorization
      type: apiKey

````