Sentry · Schema
Sentry Project
Represents a project in Sentry. Projects belong to an organization and a team, and contain issues and events for a specific application or service.
APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the project. |
| slug | string | The URL-friendly slug of the project. |
| name | string | The human-readable name of the project. |
| platform | stringnull | The platform identifier (e.g., python, javascript, react-native). |
| dateCreated | string | When the project was created. |
| isBookmarked | boolean | Whether the project is bookmarked by the authenticated user. |
| isMember | boolean | Whether the authenticated user is a member of this project. |
| features | array | A list of feature flags enabled for this project. |
| firstEvent | stringnull | The timestamp of the first event received for this project. |
| firstTransactionEvent | boolean | Whether the project has received a transaction event. |
| hasAccess | boolean | Whether the authenticated user has access to this project. |
| team | object | The primary team associated with this project. |
| teams | array | All teams that have access to this project. |
| organization | object | The organization this project belongs to. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://sentry.io/schemas/project.json",
"title": "Sentry Project",
"description": "Represents a project in Sentry. Projects belong to an organization and a team, and contain issues and events for a specific application or service.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the project."
},
"slug": {
"type": "string",
"description": "The URL-friendly slug of the project.",
"pattern": "^[a-z0-9_-]+$"
},
"name": {
"type": "string",
"description": "The human-readable name of the project."
},
"platform": {
"type": ["string", "null"],
"description": "The platform identifier (e.g., python, javascript, react-native)."
},
"dateCreated": {
"type": "string",
"format": "date-time",
"description": "When the project was created."
},
"isBookmarked": {
"type": "boolean",
"description": "Whether the project is bookmarked by the authenticated user."
},
"isMember": {
"type": "boolean",
"description": "Whether the authenticated user is a member of this project."
},
"features": {
"type": "array",
"description": "A list of feature flags enabled for this project.",
"items": {
"type": "string"
}
},
"firstEvent": {
"type": ["string", "null"],
"format": "date-time",
"description": "The timestamp of the first event received for this project."
},
"firstTransactionEvent": {
"type": "boolean",
"description": "Whether the project has received a transaction event."
},
"hasAccess": {
"type": "boolean",
"description": "Whether the authenticated user has access to this project."
},
"team": {
"type": "object",
"description": "The primary team associated with this project.",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"teams": {
"type": "array",
"description": "All teams that have access to this project.",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"organization": {
"type": "object",
"description": "The organization this project belongs to.",
"properties": {
"id": {
"type": "string"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
},
"required": ["id", "slug", "name"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/sentry-project"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.