Skip to main content
POST
/
api
/
v1
/
treasury
/
signup
Self-service sandbox partner signup (TEST keys only, rate-limited per IP)
curl --request POST \
  --url http://localhost:3001/api/v1/treasury/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Treasury",
  "slug": "acme-sandbox",
  "contactEmail": "ops@acme.test"
}
'
{
  "success": true,
  "data": {
    "partner": {},
    "credentials": {
      "secretKey": "<string>",
      "publishableKey": "<string>"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.useaxra.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
name
string
required
Example:

"Acme Treasury"

slug
string
required
Example:

"acme-sandbox"

contactEmail
string
Example:

"ops@acme.test"

Response

Sandbox partner created with test keys

success
boolean
required
Example:

true

data
object
required