For Agents
Programmatically get token details, create client. Covers 39 operations with bearer authentication.
Use for: I need to token details, I want to client, Search for clients, Find all clients
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the timelink 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.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# 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 timelink API API.
Get token details
Create client
List clients
Search clients
Update client
GET STARTED
Not supported: Does not handle payments, communications, or crm — use for developer tools only.
Sync your clients, projects and services or track your time with the timelink API. The API exposes 39 endpoints secured with bearer authentication.
Partially update client
Patterns agents use timelink API API for, with concrete tasks.
★ Developer Tools Operations
Use the timelink API to perform developer tools operations programmatically. The API provides 39 endpoints covering core functionality including get token details, create client, list clients.
Call GET /token to get token details
Automated Clients Management
Automate clients operations by combining multiple timelink API endpoints. Agents can create client and then list clients in a single workflow.
Call POST /clients to create client, then verify the result
AI Agent Integration via Jentic
AI agents discover and call timelink 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 'get token details', load the operation schema, and execute with Jentic-managed credentials
39 endpoints — sync your clients, projects and services or track your time with the timelink api.
METHOD
PATH
DESCRIPTION
/token
Get token details
/clients
Create client
/clients
List clients
/clients/search
Search clients
/clients/{id}
Get client
/clients/{id}
Update client
/clients/{id}
Partially update client
/clients/{id}
Delete client
/token
Get token details
/clients
Create client
/clients
List clients
/clients/search
Search clients
/clients/{id}
Get client
/clients/{id}
Update client
Three things that make agents converge on Jentic-routed access.
Credential isolation
timelink 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., 'get token details') and Jentic returns the matching timelink API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct timelink 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.
Github
Alternative developer tools API
Choose Github when you need a different approach to developer tools operations
Gitlab
Alternative developer tools API
Choose Gitlab when you need a different approach to developer tools operations
Specific to using timelink API API through Jentic.
What authentication does the timelink API use?
The timelink 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 get token details with the timelink API?
Yes. Use the GET /token endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the timelink 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 get token details through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'get token details'. Jentic returns the matching timelink API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the timelink API have?
The timelink API exposes 39 endpoints covering clients, company, projects operations.
/clients/{id}
Partially update client
/clients/{id}
Delete client