http://vm7h454g5hiy2nt3u5o7evtz3vigtypo2mkyausakvdkbmd7wpyhx5qd.onion/docs
Save it in a variable called $token to run the examples. export token=<your auth token> POST /register Register a new user account with a username and password curl "https://coinos.io/api/register" -H "content-type: application/json" -d '{
"user": {
"username": "demo",
"password": "hunter2"
}
}' POST /login Login to an account to get its auth token curl "https://coinos.io/api/login" -H "content-type: application/json" -d '{
"username": "demo",
"password": "hunter2"
}' GET /me Get your...