For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Get API Key
GuidesAPI Reference
GuidesAPI Reference
  • Overview
    • API Reference
  • Endpoint Reference
    • Organizations
    • Projects
    • Documents
    • Agent
    • Check
  • API Explorer
      • GETList features enabled for the current API key
      • GETHealth / ping
Get API Key
LogoLogo
API ExplorerHealth

List features enabled for the current API key

GET
/api/v2/features
GET
/api/v2/features
$curl https://api.pyramid-ai.com/api/v2/features \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "request_id": "a3f47b9e-8c2d-4f1a-9b7e-2d5f3c6a1e4b",
3 "success": true,
4 "data": {
5 "features": [
6 {
7 "key": "api.chat",
8 "enabled": true,
9 "tier": "core",
10 "expires_at": "2024-12-31T23:59:59Z"
11 },
12 {
13 "key": "api.knowledge",
14 "enabled": true,
15 "tier": "pro",
16 "expires_at": null
17 },
18 {
19 "key": "api.compliance",
20 "enabled": false,
21 "tier": "enterprise",
22 "expires_at": "2025-06-30T12:00:00Z"
23 }
24 ]
25 },
26 "pagination": {
27 "total": 127,
28 "offset": 0,
29 "limit": 50
30 }
31}
Was this page helpful?
Previous

Health / ping

Next
Built with

Authentication

AuthorizationBearer

Pyramid API key (prefix with “Bearer ”)

Response

OK
request_idstringformat: "uuid"

Server-generated per-request UUID. Also sent as X-Request-Id response header. Include in support tickets.

successany
dataobject
paginationobject

Present only on list endpoints. Top-level (not nested inside data).

Errors

401
Unauthorized Error