Create an account from an email and password.
curl --request POST \
--url https://api.symbiosis.markets/auth/signup \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"password": "<string>"
}
'import requests
url = "https://api.symbiosis.markets/auth/signup"
payload = {
"email": "<string>",
"password": "<string>"
}
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({email: '<string>', password: '<string>'})
};
fetch('https://api.symbiosis.markets/auth/signup', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Auth
Create an account from an email and password.
POST
/
auth
/
signup
Create an account from an email and password.
curl --request POST \
--url https://api.symbiosis.markets/auth/signup \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"password": "<string>"
}
'import requests
url = "https://api.symbiosis.markets/auth/signup"
payload = {
"email": "<string>",
"password": "<string>"
}
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({email: '<string>', password: '<string>'})
};
fetch('https://api.symbiosis.markets/auth/signup', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}⌘I