Skip to main content
POST
/
auth
/
signup
Register as a new integrator
curl --request POST \
  --url http://localhost:4000/v1/auth/signup \
  --header 'Content-Type: application/json' \
  --data '
{
  "organization_name": "Relayer Labs",
  "industry": "defi",
  "role": "operator"
}
'
{
  "success": true,
  "message": "<string>",
  "statusCode": 123,
  "timestamp": "<string>",
  "data": {
    "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "name": "AvaLabs",
    "email": "john@example.com",
    "organization_name": "Relayer Labs",
    "industry": "defi",
    "is_active": true,
    "created_at": "2025-05-19T15:30:00.000Z",
    "updated_at": "2025-05-20T09:00:00.000Z",
    "walletId": "wallet-abc123def456",
    "clientKey": "sk_client_v1_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z6",
    "apiKey": "sk_live_v1_b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z6a1",
    "turnkeyApiKey": "-----BEGIN PRIVATE KEY-----\nMIGEAgEAMBAGByqGSM49AgEGBS...\n-----END PRIVATE KEY-----",
    "turnkeyApiKeyId": "api-key-abc123def456",
    "primaryAddress": "0x1234567890abcdef1234567890abcdef12345678"
  },
  "path": "<string>"
}

Body

application/json
organization_name
string
required

Name of the organization.

Example:

"Relayer Labs"

industry
enum<string>
required

Industry type of the organization.

Available options:
otc_desk,
money_exchange,
remittances,
crypto_exchange,
treasury_management,
commodity_trading,
cash_logistics,
fintech,
payments,
payroll,
lending,
neobank,
cross_border,
marketplace,
defi,
gaming,
social,
ai_agents,
developer_tools,
ecommerce,
other
Example:

"defi"

role
enum<string>
default:operator

Integrator role determining default modules.

Available options:
operator,
settler
Example:

"operator"

Response

success
boolean
required
message
string
required
statusCode
number
required
timestamp
string
required
data
object
path
string