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

# Create a top-up

> Minimum 1000p (£10). Credits land when the payment completes.



## OpenAPI

````yaml api/openapi.json POST /top-ups
openapi: 3.1.0
info:
  title: Amoreg Regulatory Knowledge API
  version: 1.0.0
  description: >-
    Hybrid semantic + keyword search over Amoreg's regulatory knowledge base,
    scoped to the jurisdictions enabled for your organisation. Prepaid credits
    in GBP: 2p per search, 2p per screening keyword.
servers:
  - url: https://app.amoreg.com/api/v1
security:
  - apiKey: []
paths:
  /top-ups:
    post:
      summary: Create a Revolut checkout for a prepaid top-up
      description: Minimum 1000p (£10). Credits land when the payment completes.
      operationId: createTopUp
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                amountPence:
                  type: integer
                  minimum: 1000
                  maximum: 100000
              required:
                - amountPence
      responses:
        '200':
          description: Hosted checkout created
          content:
            application/json:
              schema:
                type: object
                properties:
                  orderId:
                    type: string
                  checkoutUrl:
                    type: string
                  amountPence:
                    type: integer
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        Organisation API key created in the dashboard (format: amrg_live_…).
        Sent as `Authorization: Bearer amrg_live_…`.

````