Skip to main content
POST
/
integrators
Create a new integrator
curl --request POST \
  --url http://localhost:4000/v1/integrators \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "AvaLabs",
  "email": "john@example.com"
}
'
{
  "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>"
}

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Body

application/json
name
string
required

Name of the integrator.

Example:

"AvaLabs"

email
string
required

Email address of the integrator.

Example:

"john@example.com"

Response

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