Last updated 1 day ago
All of your existing projects can be retrieved from the GET /projects route.
GET /projects
You can create a new project with the POST /projects route.
POST /projects
Retrieve all of your projects (containing id, name & creation date)
GET /projects HTTP/1.1 Host: api.abyssale.com x-api-key: YOUR_API_KEY Accept: */*
Ok
[ { "id": "9d00e9fe-9bd5-4471-acad-baa702a867e9", "name": "Animation Tests", "created_at_ts": 1654763057 }, { "id": "bdf9ab44-f5fd-47ad-881d-a45906901233", "name": "HTML5 Tests", "created_at_ts": 1663767647 } ]
Create a new project to organize your templates and images
Name of the project
Summer Campaign 2024
POST /projects HTTP/1.1 Host: api.abyssale.com x-api-key: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 31 { "name": "Summer Campaign 2024" }
Project created successfully
{ "id": "cb2c4add-4867-11f0-96f2-0a00d9eb8f78", "name": "Summer Campaign 2024", "created_at_ts": 1749827107 }