canonical: https://jentic.com/apis/upcoach.com/upcoach

# Upcoach API

Coaching platform API for client and program management. The API exposes 11 endpoints secured with bearer authentication.

## For AI agents

Programmatically create a new client, list all clients. Covers 11 operations with bearer authentication.

## Scope

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

## Capabilities

- Create a new client
- List all clients
- Get client details
- Update client
- Delete client

## Use cases

### Developer Tools Operations

Use the Upcoach API to perform developer tools operations programmatically. The API provides 11 endpoints covering core functionality including create a new client, list all clients, get client details.

Example prompt: Call POST /clients to create a new client

### Automated clients Management

Automate clients operations by combining multiple Upcoach API endpoints. Agents can list all clients and then get client details in a single workflow.

Example prompt: Call GET /clients to list all clients, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Upcoach 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.

Example prompt: Search Jentic for 'create a new client', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | `/clients` | Create a new client |
| GET | `/clients` | List all clients |
| GET | `/clients/{id}` | Get client details |
| PUT | `/clients/{id}` | Update client |
| DELETE | `/clients/{id}` | Delete client |
| GET | `/programs` | List all programs |
| GET | `/programs/{id}` | Get program details |
| POST | `/programs/{id}/members` | Add client to program |

## Key resources

- **clients** — Client management
- **programs** — Program and member management
- **users** — User management

## Why Jentic

- **Setup:** Wiring the Upcoach API by hand means attaching a bearer token on every call, matching each client and program operation to its request shape, and handling responses yourself. Through Jentic you install once, import the Upcoach API from the API Directory, store the token once, and your agent calls it.
- **Permission scoping:** Upcoach puts the client id in the URL path (`/clients/{id}`), so a rule can pin your agent to one client: it can read and update that client and nothing else. You choose the operations it may call, so destructive ones like deleting a client are not included unless you add them.
- **Credential handling:** Your Upcoach token 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 'create a new client' or 'read a program', and Jentic returns the matching Upcoach 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 Upcoach API use?

The Upcoach API uses a Bearer token in the Authorization header. 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 create a new client with the Upcoach API?

Yes. Use the POST /clients endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the Upcoach 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 create a new client through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'create a new client'. Jentic returns the matching Upcoach API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Upcoach API have?

The Upcoach API exposes 11 endpoints covering clients, programs, users operations.

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

Yes. You run Jentic One yourself, and your own rules decide which Upcoach operations and credentials the agent may use. Because Upcoach puts the client id in the URL path (`/clients/{id}`), you can pin the agent to a single client so it only reads and updates that one client through GET `/clients/{id}` and PUT `/clients/{id}.` You choose the operations it may call, so destructive ones like DELETE `/clients/{id}` stay out of reach unless you explicitly grant them.
