cURL
curl --request POST \ --url https://backend.anglera.com/sheets \ --header 'Content-Type: application/json' \ --header 'X-Anglera-API-Key: <api-key>' \ --data ' { "name": "<string>" } '
{ "message": "<string>", "sheet": { "id": 123, "name": "<string>" } }
Creates a new empty sheet
curl -X POST "https://backend.anglera.com/sheets" \ -H "X-Anglera-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "name": "Kitchen Appliances Q1 2026" }'
Show Sheet object
{ "message": "Sheet created successfully", "sheet": { "id": 102, "name": "Kitchen Appliances Q1 2026" } }