For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account

Getting your account information

For convenience, we also provide API endpoint to retrieve your account information

Account information

GET https://api.usestencil.com/v1/account

Headers

Name
Type
Description

Authorization

string

Must contain `Bearer <API-Secret-Key>`.

{
    "created_at": "2021-06-17T12:05:31",
    "current_project": {
        "description": "Steal the cake",
        "name": "Project 1"
    },
    "current_usage": 0,
    "email": "[email protected]",
    "id": "76baa621-283a-4b55-8236-3938e1cbf771",
    "limit_usage": 2000,
    "renewal_date": "2021-07-17T12:27:08Z"
}

This API endpoint is also useful when integrating with Integromat to check for a valid account. 200 status response is only returned when API key is valid.

Last updated