For Agents
Manage team posts, issues, todos, and customer records within collaborative workspaces. Programmatic access to Peerbie team coordination features.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Peerbie API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Peerbie 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
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 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.
Organize team activities across isolated network contexts
Patterns agents use Peerbie 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.
Specific to using Peerbie 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.