For Agents
Programmatically initiate oauth flow, exchange authorization code or refresh token. Covers 4 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 SwiftLynx 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%2Fswiftlynx.ai%2Fswiftlynx" | 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%2Fswiftlynx.ai%2Fswiftlynx" | 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 SwiftLynx API.
Initiate OAuth flow
Exchange authorization code or refresh token
Get account information
Analyze resume
GET STARTED
Use for: I need to initiate oauth flow, I want to exchange authorization code or refresh token, Search for account information, Find all analyze resume
Not supported: Does not handle payments, communications, or crm - use for identity and authentication only.
Resume analysis and matching API with OAuth2 PKCE authentication. The API exposes 4 endpoints secured with oauth2 authentication.
Monitor SwiftLynx API operational status and events
Patterns agents use SwiftLynx API for, with concrete tasks.
★ Identity and Authentication Operations
Use the SwiftLynx API to perform identity auth operations programmatically. The API provides 4 endpoints covering core functionality including initiate oauth flow, exchange authorization code or refresh token, get account information.
Call GET /api/oauth/authorize to initiate oauth flow
Automated OAuth Management
Automate oauth operations by combining multiple SwiftLynx API endpoints. Agents can exchange authorization code or refresh token and then get account information in a single workflow.
Call POST /api/oauth/token to exchange authorization code or refresh token, then verify the result
AI Agent Integration via Jentic
AI agents discover and call SwiftLynx 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 'initiate oauth flow', load the operation schema, and execute with Jentic-managed credentials
4 endpoints — resume analysis and matching api with oauth2 pkce authentication.
METHOD
PATH
DESCRIPTION
/api/oauth/authorize
Initiate OAuth flow
/api/oauth/token
Exchange authorization code or refresh token
/api/me
Get account information
/api/analyze
Analyze resume
/api/oauth/authorize
Initiate OAuth flow
/api/oauth/token
Exchange authorization code or refresh token
/api/me
Get account information
/api/analyze
Analyze resume
What agents get from Jentic-routed access to this vendor.
Setup
Wiring SwiftLynx by hand means implementing its OAuth2 authorization-code flow against swiftlynx.ai, exchanging codes for tokens at /api/oauth/token, and refreshing them yourself. Through Jentic you install once, import SwiftLynx from the API Directory, store the OAuth2 credentials once, and your agent calls it.
Permission scoping
SwiftLynx carries its targets in the request body rather than the URL path, so scope the agent to the operations it needs, such as reading the current user or running an analysis. You choose that allowed set, so anything you do not add stays out of reach.
Credential isolation
Your SwiftLynx OAuth2 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 'start the OAuth flow' or 'analyze text', and Jentic returns the matching SwiftLynx 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 SwiftLynx API through Jentic.
What authentication does the SwiftLynx API use?
The SwiftLynx 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 initiate oauth flow with the SwiftLynx API?
Yes. Use the GET /api/oauth/authorize endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the SwiftLynx 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 initiate oauth flow through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'initiate oauth flow'. Jentic returns the matching SwiftLynx API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the SwiftLynx API have?
The SwiftLynx API exposes 4 endpoints covering oauth, account, analysis operations.