Skip to main content
POST
/
extern
/
fe
/
safe
/
request
Request creation of a Safe for a chain
curl --request POST \
  --url https://{host}/extern/fe/safe/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Publishable-Key: <api-key>' \
  --data '
{
  "chainId": "<string>"
}
'
const options = {
  method: 'POST',
  headers: {
    'X-Publishable-Key': '<api-key>',
    Authorization: 'Bearer <token>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({chainId: '<string>'})
};

fetch('https://{host}/extern/fe/safe/request', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
import requests

url = "https://{host}/extern/fe/safe/request"

payload = { "chainId": "<string>" }
headers = {
    "X-Publishable-Key": "<api-key>",
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "status": "<string>",
  "data": {
    "message": "<string>"
  }
}
{
  "status": "<string>",
  "message": "<string>"
}
{
  "status": "<string>",
  "message": "<string>"
}
{
  "status": "<string>",
  "message": "<string>"
}
{
  "status": "<string>",
  "message": "<string>"
}
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

X-Publishable-Key
string
header
required

Tenant publishable key (pk_live_...)

Authorization
string
header
required

SIWE session JWT issued by POST /auth/verify

Body

application/json
chainId
required

Response

Success

status
string
required
Allowed value: "success"
data
object
required
Last modified on July 3, 2026