For Agents
Programmatically request oauth authorization code, get or refresh access token. Covers 8 operations with oauth2 authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Skipio 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%2Fskipio.com%2Fskipio" | 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%2Fskipio.com%2Fskipio" | 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 Skipio API.
Request OAuth Authorization Code
Get or Refresh Access Token
Create Multiple Contacts
Query and filter Skipio API records by parameters
GET STARTED
Use for: I need to request oauth authorization code, I want to or refresh access token, Search for all custom fields, Find all all contact fields
Not supported: Does not handle payments, communications, or crm - use for identity and authentication only.
Skipio OAuth API for SMS messaging and contact management. All API requests require a valid access_token obtained through the OAuth 2.0 Authorization Code grant flow. The API exposes 8 endpoints secured with oauth2 authentication.
Monitor Skipio API operational status and events
Patterns agents use Skipio API for, with concrete tasks.
★ Identity and Authentication Operations
Use the Skipio API to perform identity auth operations programmatically. The API provides 8 endpoints covering core functionality including request oauth authorization code, get or refresh access token, get all custom fields.
Call GET /oauth/authorize to request oauth authorization code
Automated Authentication Management
Automate authentication operations by combining multiple Skipio API endpoints. Agents can get or refresh access token and then get all custom fields in a single workflow.
Call POST /oauth/token to get or refresh access token, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Skipio 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 oauth2 tokens manually.
Search Jentic for 'request oauth authorization code', load the operation schema, and execute with Jentic-managed credentials
8 endpoints — skipio oauth api for sms messaging and contact management.
METHOD
PATH
DESCRIPTION
/oauth/authorize
Request OAuth Authorization Code
/oauth/token
Get or Refresh Access Token
/api/v2/custom_fields
Get All Custom Fields
/api/v2/contact_fields
Get All Contact Fields
/api/v2/batch_contacts
Create Multiple Contacts
/api/v2/contacts
Get All Contacts
/api/v2/groups
Get List of Groups
/api/v2/groups/{contact_group_id}/contacts
Add Contact to Group
/oauth/authorize
Request OAuth Authorization Code
/oauth/token
Get or Refresh Access Token
/api/v2/custom_fields
Get All Custom Fields
/api/v2/contact_fields
Get All Contact Fields
/api/v2/batch_contacts
Create Multiple Contacts
What agents get from Jentic-routed access to this vendor.
Setup
Wiring Skipio by hand means implementing its OAuth 2.0 authorization code flow against app.skipio.com, exchanging the code at /oauth/token, and refreshing tokens yourself before calls to the contacts and groups endpoints. Through Jentic you install once, import Skipio from the API Directory, store the OAuth credentials once, and your agent calls it.
Permission scoping
Skipio puts the contact group id in the URL path (/api/v2/groups/{contact_group_id}/contacts), so a rule can pin your agent to one contact group for that add operation. You choose the operations it may call, so if you only grant reads of contacts and custom fields, batch contact creation is not included unless you add it.
Credential isolation
Your Skipio OAuth credentials are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list Skipio contacts' or 'add contacts to a group', and Jentic returns the matching Skipio 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.
Specific to using Skipio API through Jentic.
What authentication does the Skipio API use?
The Skipio API uses OAuth 2.0 for authorization. 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 request oauth authorization code with the Skipio API?
Yes. Use the GET /oauth/authorize endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Skipio 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 request oauth authorization code through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'request oauth authorization code'. Jentic returns the matching Skipio API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Skipio API have?
The Skipio API exposes 8 endpoints covering authentication, contacts, groups operations.
Can I limit what my agent is allowed to do with the Skipio API?
Yes. Because Jentic One is self-hosted, your own rules decide which Skipio operations and credentials the agent may use, so you can grant read-only access to contacts and custom fields while withholding batch contact creation until you choose to add it. Since Skipio puts the contact group id in the URL path for the add-to-group operation (/api/v2/groups/{contact_group_id}/contacts), a rule can pin the agent to a single contact group. Any operation you do not grant, such as creating multiple contacts, stays outside what the agent can call.
/api/v2/contacts
Get All Contacts
/api/v2/groups
Get List of Groups
/api/v2/groups/{contact_group_id}/contacts
Add Contact to Group