canonical: https://jentic.com/apis/taktikal.is/taktikal-is

# Taktikal Is Taktikal Core API

Taktikal is a digital signing and onboarding platform providing e-signing, sequential signing, authentication, compliance, document management, and webhook capabilities. The API exposes 66 endpoints secured with basic authentication.

## For AI agents

Programmatically get activity log total for paging support, get activity log. Covers 66 operations with basic authentication.

## Scope

Does not handle payments, communications, or crm - use for developer tools only.

## Capabilities

- Get activity log total for paging support
- Authenticate a signee into a signing sequence
- Start authentication with e-ID for sequence
- Poll authentication completion for sequence
- Add a sequential signee

## Use cases

### Developer Tools Operations

Use the Taktikal Core API to perform developer tools operations programmatically. The API provides 66 endpoints covering core functionality including get activity log total for paging support, get activity log, authenticate a signee into a signing sequence.

Example prompt: Call GET `/signing/activity/total` to get activity log total for paging support

### Automated Activity Management

Automate activity operations by combining multiple Taktikal Core API endpoints. Agents can get activity log and then authenticate a signee into a signing sequence in a single workflow.

Example prompt: Call GET `/signing/activity` to get activity log, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Taktikal Core 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 basic tokens manually.

Example prompt: Search Jentic for 'get activity log total for paging support', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/signing/activity/total` | Get activity log total for paging support |
| GET | `/signing/activity` | Get activity log |
| POST | `/signing/sequential/{SequenceKey}` | Authenticate a signee into a signing sequence |
| POST | `/signing/sequential/{SequenceKey}/auth` | Start authentication with e-ID for sequence |
| POST | `/signing/sequential/{SequenceKey}/auth/poll` | Poll authentication completion for sequence |
| POST | `/signing/sequential/{SequenceKey}/signee` | Add a sequential signee |
| GET | `/signing/sequential/{SequenceKey}/signee/{SequentialSigneeKey}` | Get sequential signing by signee key |
| PUT | `/signing/sequential/{SequenceKey}/signee/{SequentialSigneeKey}` | Update a sequential signee |

## Key resources

- **Activity** — Signing activity logs
- **Sequential Signing** — Sequential (bulk) signing operations
- **Signing Process** — Individual signing process management
- **Management** — Administrative signing operations
- **Authentication** — E-ID authentication flows

## AI readiness

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

- **Score:** 37 / 100
- **Maturity:** Non-Ready
- **Dimensions:**
  - Foundational Compliance: 74 / 100
  - Developer Experience & Jentic Compatibility: 56 / 100
  - AI-Readiness & Agent Experience: 41 / 100
  - Agent Usability: 92 / 100
  - Security: 10 / 100
  - AI Discoverability: 60 / 100
- **View full report:** https://jentic.com/apis/taktikal.is/taktikal-is/scorecard
- **How the score is calculated:** https://docs.jentic.com/reference/api-readiness-framework/overview/
- **More about the dimensions:** https://docs.jentic.com/reference/api-readiness-framework/specification/#dimensional-model-overview

### Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

- **Score your own API:** https://jentic.com/scorecard.md
- **Scoring CLI agent skill:** https://github.com/jentic/jentic-api-scorecard/blob/main/skills/jentic-api-scorecard/SKILL.md

```sh
npx @jentic/api-scorecard-cli score <openapi-url>
```

## Why Jentic

- **Setup:** Wiring the Taktikal Core API by hand means setting up HTTP basic auth with an API key scoped to the right resource and threading sequence and signee keys through nested signing routes yourself. Through Jentic you install once, import the Taktikal Core API from the API Directory, store the basic credential once, and your agent calls it.
- **Permission scoping:** Taktikal puts the sequence key in the URL path (`/signing/sequential/{SequenceKey}/...`), so a rule can pin your agent to one signing sequence: it can read that sequence's signees and nothing else. You choose the operations it may call, so adding a signee or updating one is not included unless you add it.
- **Credential handling:** Your Taktikal basic credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'read the signing activity log' or 'add a signee to a sequence', and Jentic returns the matching Taktikal operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Github** — Alternative developer tools API
- **Gitlab** — Alternative developer tools API

## FAQ

### What authentication does the Taktikal Core API use?

The Taktikal Core API uses HTTP Basic authentication with username and password. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.

### Can I get activity log total for paging support with the Taktikal Core API?

Yes. Use the GET `/signing/activity/total` endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the Taktikal Core 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 activity log total for paging support through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'get activity log total for paging support'. Jentic returns the matching Taktikal Core API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Taktikal Core API have?

The Taktikal Core API exposes 66 endpoints covering activity, sequential signing, signing process operations.

### Can I limit what my agent is allowed to do with the Taktikal Core API?

Yes. Jentic One is self-hosted, so your own rules decide which Taktikal operations and credentials your agent may use. Because Taktikal puts the sequence key in the URL path, such as `/signing/sequential/{SequenceKey}`, you can pin the agent to a single signing sequence and grant only read access to that sequence's signees. Write operations like adding or updating a signee stay off limits unless you explicitly include them.
