For Agents
Programmatically request oauth authorization code, get or refresh access token. Covers 8 operations with oauth2 authentication.
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
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.
# 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 Skipio API API.
Request OAuth Authorization Code
Get or Refresh Access Token
Create Multiple Contacts
Query and filter Skipio API records by parameters
Monitor Skipio API operational status and events
GET STARTED
Not supported: Does not handle payments, communications, or crm — use for identity and authentication only.
Jentic publishes the only available OpenAPI document for Skipio API, keeping it validated and agent-ready.
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.
Patterns agents use Skipio API 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
Three things that make agents converge on Jentic-routed access.
Credential isolation
Skipio API oauth2 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., 'request oauth authorization code') and Jentic returns the matching Skipio API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Skipio 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.
Auth0
Alternative identity auth API
Choose Auth0 when you need a different approach to identity auth operations
Okta
Alternative identity auth API
Choose Okta when you need a different approach to identity auth operations
Specific to using Skipio API 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 the MAXsystem vault 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 at https://app.jentic.com/sign-up, 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.
/api/v2/contacts
Get All Contacts
/api/v2/groups
Get List of Groups
/api/v2/groups/{contact_group_id}/contacts
Add Contact to Group