Skip to main content

1. Create an API key

In Neuro Admin, go to: Company Admin → API keys From there you can:
  • create a Live or Test key,
  • optionally set an expiry date,
  • optionally restrict the key to specific allowed IPs,
  • copy the generated key value for your integration.

2. Choose the correct base URL

Use the following base URL for all API requests:

3. Send the API key as a bearer token

4. Make your first request

A simple first request is creating a checkout customer. It confirms your key works and gives you a reusable customer_id for later checkout calls.
Example response shape:

5. Typical integration flow

For a hosted checkout integration, a common flow looks like this:
  1. Create or reuse a Neuro-Pay customer.
  2. Create a checkout.
  3. Redirect the buyer to the returned redirectUrl.
  4. Retrieve, capture, refund, or update the checkout as needed.

Next steps