For Agents
Programmatically login and get access token, logout (delete token). Covers 45 operations with bearer authentication.
I need to login and get access token, I want to logout (delete token), Search for a project, Find all all projects
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Planka 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 Planka API.
Login and get access token
Logout (delete token)
Create a project
List all projects
GET STARTED
Not supported: Does not handle payments, communications, or crm — use for productivity only.
Planka is an open-source Trello-like kanban board. The API provides management of projects, boards, lists, cards, labels, tasks, comments, attachments, and users. The API exposes 45 endpoints secured with bearer authentication.
Get project details
Update a project
Delete a project
Patterns agents use Planka API for, with concrete tasks.
★ Productivity Operations
Use the Planka API to perform productivity operations programmatically. The API provides 45 endpoints covering core functionality including login and get access token, logout (delete token), create a project.
Call POST /api/access-tokens to login and get access token
Automated Auth Management
Automate auth operations by combining multiple Planka API endpoints. Agents can logout (delete token) and then create a project in a single workflow.
Call DELETE /api/access-tokens to logout (delete token), then verify the result
AI Agent Integration via Jentic
AI agents discover and call Planka API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle bearer tokens manually.
Search Jentic for 'login and get access token', load the operation schema, and execute with Jentic-managed credentials
45 endpoints — planka is an open-source trello-like kanban board.
METHOD
PATH
DESCRIPTION
/api/access-tokens
Login and get access token
/api/access-tokens
Logout (delete token)
/api/projects
Create a project
/api/projects
List all projects
/api/projects/{projectId}
Get project details
/api/projects/{projectId}
Update a project
/api/projects/{projectId}
Delete a project
/api/projects/{projectId}/managers
Add project manager
/api/access-tokens
Login and get access token
/api/access-tokens
Logout (delete token)
/api/projects
Create a project
/api/projects
List all projects
/api/projects/{projectId}
Get project details
Three things that make agents converge on Jentic-routed access.
Credential isolation
Planka API bearer credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'login and get access token') and Jentic returns the matching Planka API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Planka API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Planka API through Jentic.
What authentication does the Planka API use?
The Planka API uses a Bearer token in the Authorization header. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I login and get access token with the Planka API?
Yes. Use the POST /api/access-tokens endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Planka API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I login and get access token through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'login and get access token'. Jentic returns the matching Planka API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Planka API have?
The Planka API exposes 45 endpoints covering auth, projects, boards operations.
/api/projects/{projectId}
Update a project
/api/projects/{projectId}
Delete a project
/api/projects/{projectId}/managers
Add project manager