Skip to main content
GET
https://backend.anglera.com
/
sheets
/
{id}
Get Sheet
curl --request GET \
  --url https://backend.anglera.com/sheets/{id} \
  --header 'X-Anglera-API-Key: <api-key>'
{
  "sheet_id": "<string>",
  "sheet_name": "<string>"
}
Returns a single active (non-archived) sheet by its ID.

Request

curl "https://backend.anglera.com/sheets/100" \
  -H "X-Anglera-API-Key: your_api_key"

Path Parameters

id
integer
required
ID of the sheet to retrieve

Response

sheet_id
string
Unique identifier for the sheet
sheet_name
string
Human-readable name of the sheet
Example Response
{
  "sheet_id": "100",
  "sheet_name": "Kitchen Appliances Q4 2025"
}