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

# Get domain purchase provider

> <Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>

Returns which provider sells this app's workspace a new domain.

Buying a domain happens in the Base44 editor, not through the API, so use this to know which checkout the editor shows. A domain bought there appears in [List custom domains](/api-reference/list-custom-domains) once the purchase completes.

This is limited to 60 requests a minute per caller. Some workspaces have a different limit.



## OpenAPI

````yaml /developers/references/app-management/app-management-openapi.json get /api/apps/{app_id}/custom-domains/purchase-provider
openapi: 3.1.0
info:
  title: Base44 App Management API
  version: 1.0.0
servers:
  - url: https://app.base44.com
security:
  - PersonalAccessTokenAuth: []
paths:
  /api/apps/{app_id}/custom-domains/purchase-provider:
    get:
      summary: Get domain purchase provider
      description: >-
        <Info>This API is in beta. Endpoints, fields, and behavior may still
        change, so avoid depending on it in production.</Info>


        Returns which provider sells this app's workspace a new domain.


        Buying a domain happens in the Base44 editor, not through the API, so
        use this to know which checkout the editor shows. A domain bought there
        appears in [List custom domains](/api-reference/list-custom-domains)
        once the purchase completes.


        This is limited to 60 requests a minute per caller. Some workspaces have
        a different limit.
      operationId: >-
        get_purchase_provider_api_apps__app_id__custom_domains_purchase_provider_get
      parameters:
        - description: ID of the app the domain belongs to.
          example: 6820f3a4e7b91d003c45a1f2
          in: path
          name: app_id
          required: true
          schema:
            description: ID of the app the domain belongs to.
            title: App Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DomainPurchaseProvider'
          description: Successful Response
        '401':
          description: Missing or invalid credentials.
        '403':
          description: >-
            You don't have access to this app, or you used a workspace API key.
            These endpoints take a personal API key.
        '404':
          description: App not found.
        '429':
          description: Rate limit reached. Retry later.
components:
  schemas:
    DomainPurchaseProvider:
      description: Which provider sells this app's workspace a new domain.
      properties:
        provider:
          description: >-
            Either `wix` or `entri`, the provider whose checkout the Base44
            editor shows for a new domain.
          enum:
            - wix
            - entri
          example: entri
          title: Provider
          type: string
      required:
        - provider
      title: DomainPurchaseProvider
      type: object
  securitySchemes:
    PersonalAccessTokenAuth:
      description: 'Personal access token, sent as `Authorization: Bearer <token>`.'
      scheme: bearer
      type: http

````