Skip to main content
GET
https://backend.anglera.com
/
sheets
List Sheets
curl --request GET \
  --url https://backend.anglera.com/sheets \
  --header 'X-Anglera-API-Key: <api-key>'
{
  "sheets": [
    {
      "sheet_id": "<string>",
      "sheet_name": "<string>"
    }
  ]
}
Returns all active (non-archived) sheets for your organization.

Request

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

Response

sheets
array
List of sheets in your organization
Example Response
{
  "sheets": [
    {
      "sheet_id": "100",
      "sheet_name": "Kitchen Appliances Q4 2025"
    },
    {
      "sheet_id": "3910",
      "sheet_name": "Power Tools - Competitive Pricing"
    },
    {
      "sheet_id": "4521",
      "sheet_name": "Outdoor Furniture Collection"
    }
  ]
}