curl --request POST \
--url https://pulsarpay.io/api/v1/agents/register \
--header 'Content-Type: application/json' \
--data '
{
"name": "openclaw-agent",
"email": "dev@openclaw.ai",
"website": "https://openclaw.ai"
}
'import requests
url = "https://pulsarpay.io/api/v1/agents/register"
payload = {
"name": "openclaw-agent",
"email": "dev@openclaw.ai",
"website": "https://openclaw.ai"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'openclaw-agent',
email: 'dev@openclaw.ai',
website: 'https://openclaw.ai'
})
};
fetch('https://pulsarpay.io/api/v1/agents/register', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pulsarpay.io/api/v1/agents/register",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'openclaw-agent',
'email' => 'dev@openclaw.ai',
'website' => 'https://openclaw.ai'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pulsarpay.io/api/v1/agents/register"
payload := strings.NewReader("{\n \"name\": \"openclaw-agent\",\n \"email\": \"dev@openclaw.ai\",\n \"website\": \"https://openclaw.ai\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pulsarpay.io/api/v1/agents/register")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"openclaw-agent\",\n \"email\": \"dev@openclaw.ai\",\n \"website\": \"https://openclaw.ai\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pulsarpay.io/api/v1/agents/register")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"openclaw-agent\",\n \"email\": \"dev@openclaw.ai\",\n \"website\": \"https://openclaw.ai\"\n}"
response = http.request(request)
puts response.read_body{
"message": "Your agent has been created. To start processing payments, please reach out to hello@pulsarpay.io for account activation.",
"apiKey": "ag_live__xxxxxxxxxxxxxxxxxx",
"enabled": false
}Register Agent
Register a new agent into the Pulsarpay infrastructure.
curl --request POST \
--url https://pulsarpay.io/api/v1/agents/register \
--header 'Content-Type: application/json' \
--data '
{
"name": "openclaw-agent",
"email": "dev@openclaw.ai",
"website": "https://openclaw.ai"
}
'import requests
url = "https://pulsarpay.io/api/v1/agents/register"
payload = {
"name": "openclaw-agent",
"email": "dev@openclaw.ai",
"website": "https://openclaw.ai"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'openclaw-agent',
email: 'dev@openclaw.ai',
website: 'https://openclaw.ai'
})
};
fetch('https://pulsarpay.io/api/v1/agents/register', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pulsarpay.io/api/v1/agents/register",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'openclaw-agent',
'email' => 'dev@openclaw.ai',
'website' => 'https://openclaw.ai'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pulsarpay.io/api/v1/agents/register"
payload := strings.NewReader("{\n \"name\": \"openclaw-agent\",\n \"email\": \"dev@openclaw.ai\",\n \"website\": \"https://openclaw.ai\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pulsarpay.io/api/v1/agents/register")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"openclaw-agent\",\n \"email\": \"dev@openclaw.ai\",\n \"website\": \"https://openclaw.ai\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pulsarpay.io/api/v1/agents/register")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"openclaw-agent\",\n \"email\": \"dev@openclaw.ai\",\n \"website\": \"https://openclaw.ai\"\n}"
response = http.request(request)
puts response.read_body{
"message": "Your agent has been created. To start processing payments, please reach out to hello@pulsarpay.io for account activation.",
"apiKey": "ag_live__xxxxxxxxxxxxxxxxxx",
"enabled": false
}Body
A unique, human-readable name for your agent. This will be displayed in user authorization logs and transaction history.
"openclaw-agent"
Primary developer or organization email. This address will be used for manual account activation and critical security notifications.
"dev@openclaw.ai"
Official landing page or documentation URL for the agent's service. Used to verify the legitimacy of the project during onboarding.
"https://openclaw.ai"
Response
Agent registered successfully
Onboarding instructions and next steps for the developer.
"Your agent has been created. To start processing payments, please reach out to hello@pulsarpay.io for account activation."
The secret API key for the agent. This key is used in the 'X-agent-key' header to authenticate charges. It is only shown once upon registration.
"ag_live__xxxxxxxxxxxxxxxxxx"
Indicates if the agent is active and authorized to process payments. New agents are disabled by default until manual verification is completed.
false

