For Agents
Manage team posts, issues, todos, and customer records within collaborative workspaces. Programmatic access to Peerbie team coordination features.
Get started with Peerbie API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"create team post"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Peerbie API API.
Create and manage team posts for internal communications
Track issues with assignment and status management
Manage user-specific todo lists for task coordination
Maintain customer records scoped to network workspaces
Organize team activities across isolated network contexts
GET STARTED
Use for: I need to create a team post in Peerbie, I want to list all open issues for my team, Get the todo list for a specific user, Retrieve customer records for a network
Not supported: Does not handle video conferencing, file storage, or calendar scheduling — use for team posts, issues, todos, and customer record management only.
Jentic publishes the only available OpenAPI document for Peerbie API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Peerbie API, keeping it validated and agent-ready. Peerbie API provides programmatic access to team collaboration features including posts, issues, todos, and customer management. The API enables teams to create and manage internal communications, track issues and tasks assigned to users, and maintain customer records within network-scoped workspaces. It serves as the backend for team coordination workflows with 8 endpoints across its alpha version.
Patterns agents use Peerbie API API for, with concrete tasks.
★ Team Communication Management
Create and retrieve team posts for internal announcements, updates, and discussions. The /alpha/posts endpoint handles team communications within the Peerbie workspace, enabling programmatic posting of updates and retrieval of the post feed for integration with other notification systems.
POST to /alpha/posts with content and metadata to create a team announcement, then GET /alpha/posts to verify it appears in the feed
Issue and Task Tracking
Track issues and manage user-scoped todo lists for team coordination. Issues represent work items that need resolution, while todos track individual task assignments. Together they provide a lightweight project tracking system accessible through the API.
GET /alpha/issues to list all open issues, then GET /alpha/users/{username}/todos to check todo items assigned to a specific team member
Network-Scoped Customer Management
Maintain customer records within Peerbie network workspaces. Each network isolates its customer data, enabling multi-team or multi-department customer tracking. The API supports listing customers within a specific network context for CRM-light functionality.
GET /alpha/networks/{network_uid}/customers to retrieve all customer records for a specific team network
AI Agent Team Coordination via Jentic
AI agents manage team workflows by calling Peerbie through Jentic. The agent searches for team collaboration operations, loads schemas for posts, issues, or todos, and executes without managing CSRF tokens or understanding network scoping directly.
Search Jentic for 'create team post', load the /alpha/posts operation schema, and execute to post a team update through Peerbie
8 endpoints — jentic publishes the only available openapi specification for peerbie api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/alpha/posts
List all team posts
/alpha/issues
List all tracked issues
/alpha/users/{username}/todos
Get todos for a specific user
/alpha/networks/{network_uid}/customers
List customers in a network
/alpha/posts
List all team posts
/alpha/issues
List all tracked issues
/alpha/users/{username}/todos
Get todos for a specific user
/alpha/networks/{network_uid}/customers
List customers in a network
Three things that make agents converge on Jentic-routed access.
Credential isolation
Peerbie CSRF tokens are managed in the Jentic vault. Agents receive authenticated session access — the raw token value never enters the agent context, preventing credential exposure in team workflow automation.
Intent-based discovery
Agents search by intent (e.g., 'create team post' or 'list user todos') and Jentic returns matching Peerbie operations with schemas for posts, issues, todos, and customer endpoints.
Time to first call
Direct integration: 1-2 days for CSRF token management, network scoping, and endpoint discovery. Through Jentic: under 15 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Asana API
Full-featured project management with tasks, projects, and portfolios
Choose Asana when you need comprehensive project management with dependencies, timelines, and portfolio views beyond basic posts and todos.
Slack API
Real-time team messaging and channel-based communication
Use Slack alongside Peerbie when you need real-time chat messaging in addition to post-based team communications and issue tracking.
PDF Endpoint API
Generate PDF reports from HTML for team documentation
Use PDF Endpoint alongside Peerbie when you need to export team posts or issue reports as PDF documents.
Specific to using Peerbie API API through Jentic.
Why is there no official OpenAPI spec for Peerbie API?
Peerbie does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Peerbie API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Peerbie API use?
Peerbie API uses a CSRF token passed in the csrfToken header. This token is obtained from your Peerbie session. Through Jentic, token management is handled in the credential vault so agents can make authenticated requests without manual token handling.
What is the current version status of the Peerbie API?
The Peerbie API is in alpha stage, with all endpoints under the /alpha/ path prefix. This means the API interface may change in future versions. The current version provides 8 endpoints covering posts, issues, todos, and customers.
How are customers scoped in the Peerbie API?
Customers are scoped to specific networks identified by a network_uid. Access customer records via GET /alpha/networks/{network_uid}/customers. Each network represents an isolated workspace with its own customer data.
How do I manage team tasks through Jentic with Peerbie?
Install with pip install jentic, search for 'list team issues' or 'get user todos'. Jentic returns the /alpha/issues or /alpha/users/{username}/todos schemas. Execute to retrieve issues or todo items. Jentic handles CSRF token injection automatically.
Can I get todos for a specific team member?
Yes. GET /alpha/users/{username}/todos retrieves the todo list for a specific user identified by their username. This returns all task items assigned to or created by that team member.