Skip to main content

Creating a New Project

Creating a new project with Ripplefy is simple. Follow the instructions below to use our API to create a new project. After doing so, you will receive a secret key. This key is private and should not be shared; please ensure its security.

POST /projects

cURL

curl --location 'https://api.ripplesignal.co/projects' \
--header 'Content-Type: application/json' \
--data '{
"name": "Your Project Name"
}'

Response

Status Code: 200 OK

{
"secret_key": "{your_project_secret_key}"
}