Skip to main content

Set monthly spend alerts

You can set up email alerts to monitor your organization’s monthly spending. These alerts notify designated recipients when spending reaches specified thresholds. The alerts automatically reset at the start of each monthly billing cycle. To set a spend alert:
  1. Go to Settings > Spend alerts in the Pinecone console
  2. Click + Add Alert.
  3. Enter the dollar amount for the spend alert.
  4. Enter the email addresses to send the alert to. Organization owners are listed by default.
  5. Click Create.
To edit a spend alert:
  1. In the row of the spend alert you want to edit, click ellipsis (…) menu > Edit.
  2. Change the dollar amount and/or email addresses for the spend alert.
  3. Click Update.
Auto-spend spike alert: To protect from unexpected cost increases, Pinecone sends an alert when spending exceeds double your previous month’s invoice amount. While the alert threshold is fixed and the alert cannot be deleted, you can modify which email addresses receive the alert and enable or disable the alert notifications.

Monitor organization-level usage

You must be the organization owner to view usage across your Pinecone organization. Also, this feature is available only to organizations on the Standard or Enterprise plans.
To view and download a report of your usage and costs for your Pinecone organization, go to Settings > Usage in the Pinecone console. All dates are given in UTC to match billing invoices.

Monitor token usage

Requests to the chat, context retrieval, and evaluation API endpoints return a usage parameter with prompt_tokens, completion_tokens, and total_tokens generated.
  • Chat
  • Context retrieval
  • Response evaluation
For chat, tokens are defined as follows:
  • prompt_tokens are based on the messages sent to the assistant and the context snippets retrieved from the assistant and sent to a model. Messages sent to the assistant can include messages from the chat history in addition to the newest message. prompt_tokens appear as Assistants Input Tokens on invoices.
  • completion_tokens are based on the answer from the model. completion_tokens appear as Assistants Output Tokens on invoices.
  • total_tokens is the sum of prompt_tokens and completion_tokens.
Example chat response
{
    "finish_reason": "stop",
    "message": {
        "role": "assistant",
        "content": "The Chief Financial Officer (CFO) of Netflix is Spencer Neumann."
    },
    "id": "000000000000000030513193ccc52814",
    "model": "gpt-4o-2024-11-20",
    "usage": {
        "prompt_tokens": 23626,
        "completion_tokens": 21,
        "total_tokens": 23647
    },
    "citations": [
        {
            "position": 63,
            "references": [
                {
                    "file": {
                        "status": "Available",
                        "id": "99305805-3844-41b5-af56-ee693ab80527",
                        "name": "Netflix-10-K-01262024.pdf",
                        "size": 1073470,
                        "metadata": null,
                        "updated_on": "2025-07-29T20:07:53.171752661Z",
                        "created_on": "2025-07-29T20:07:36.361322699Z",
                        "percent_done": 1,
                        "signed_url": "https://storage.googleapis.com/...",
                        "error_message": null
                    },
                    "pages": [
                        78,
                        79,
                        80
                    ],
                    "highlight": null
                },
                {
                    "file": {
                        "status": "Available",
                        "id": "99305805-3844-41b5-af56-ee693ab80527",
                        "name": "Netflix-10-K-01262024.pdf",
                        "size": 1073470,
                        "metadata": null,
                        "updated_on": "2025-07-29T20:07:53.171752661Z",
                        "created_on": "2025-07-29T20:07:36.361322699Z",
                        "percent_done": 1,
                        "signed_url": "https://storage.googleapis.com/...",
                        "error_message": null
                    },
                    "pages": [
                        77,
                        78
                    ],
                    "highlight": null
                }
            ]
        }
    ]
}