Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Robin Workplace 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Frobinpowered.com%2Frobinpowered" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Frobinpowered.com%2Frobinpowered" | 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 Robin Workplace API.
Get current authentication details
Create a location for an organization
List locations for an organization
Query and filter Robin Workplace API records by parameters
Monitor Robin Workplace API operational status and events
GET STARTED
Patterns agents use Robin Workplace API for, with concrete tasks.
★ E-Commerce Operations
Use the Robin Workplace API to perform e commerce operations programmatically. The API provides 71 endpoints covering core functionality including get current authentication details, get an organization by id, create a location for an organization.
Call GET /auth to get current authentication details
Automated Auth Management
Automate auth operations by combining multiple Robin Workplace API endpoints. Agents can get an organization by id and then create a location for an organization in a single workflow.
Call GET /organizations/{id} to get an organization by id, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Robin Workplace 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 apiKey tokens manually.
Search Jentic for 'get current authentication details', load the operation schema, and execute with Jentic-managed credentials
71 endpoints — the robin workplace api provides programmatic access to manage workplaces, spaces, desks, events, reservations, and more.
METHOD
PATH
DESCRIPTION
/auth
Get current authentication details
/organizations/{id}
Get an organization by ID
/organizations/{id}/locations
Create a location for an organization
/organizations/{id}/locations
List locations for an organization
/organizations/{id}/users
Create a user for an organization
/organizations/{id}/users
List users for an organization
/organizations/{id}/users/{userId}
Get a specific user in an organization
/organizations/{id}/amenities
Create an amenity for an organization
/auth
Get current authentication details
/organizations/{id}
Get an organization by ID
/organizations/{id}/locations
Create a location for an organization
/organizations/{id}/locations
List locations for an organization
/organizations/{id}/users
Create a user for an organization
/organizations/{id}/users
List users for an organization
/organizations/{id}/users/{userId}
Get a specific user in an organization
/organizations/{id}/amenities
Create an amenity for an organization
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Robin Workplace API by hand means formatting your apiKey as Access-Token in the Authorization header, sending it on every call to the api.robinpowered.com host, and threading organization ids through the locations, users, and amenities paths yourself. Through Jentic you install once, import the Robin Workplace API from the API Directory, store the API key once, and your agent calls it.
Permission scoping
Robin puts the resource id in the URL path (/organizations/{id}/users/{userId}), so a rule can pin your agent to one organization and its users, locations, and amenities. You choose the operations it may call, so writes like creating a user or location are not included unless you add them.
Credential isolation
Your Robin API key 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.
Intent-based discovery
Agents search Jentic by intent such as 'list users in an organization' or 'create a location', and Jentic returns the matching Robin Workplace API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Stripe
Alternative e commerce API
Choose Stripe when you need a different approach to e commerce operations
Specific to using Robin Workplace API through Jentic.
What authentication does the Robin Workplace API use?
The Robin Workplace API uses an API key passed 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 get current authentication details with the Robin Workplace API?
Yes. Use the GET /auth endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Robin Workplace 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 current authentication details through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'get current authentication details'. Jentic returns the matching Robin Workplace API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Robin Workplace API have?
The Robin Workplace API exposes 71 endpoints covering auth, organizations, users operations.
Can I limit what my agent is allowed to do with the Robin Workplace API?
Yes. Because you run Jentic One yourself, your own rules decide which Robin Workplace API operations and which stored API key the agent may use. Since Robin puts the resource id in the URL path, such as /organizations/{id}/users/{userId}, you can pin the agent to a single organization and its users, locations, and amenities. You also choose the operations it may call, so writes like creating a user or a location stay off limits unless you add them.
For Agents
Programmatically get current authentication details, get an organization by id. Covers 71 operations with apiKey authentication.
Use for: I need to current authentication details, I want to an organization by id, Search for a location for an organization, Find all locations for an organization
Not supported: Does not handle payments, communications, or crm - use for e-commerce only.
The Robin Workplace API provides programmatic access to manage workplaces, spaces, desks, events, reservations, and more. The API exposes 71 endpoints secured with apiKey authentication.