For Agents
Programmatically get token for both authorization_code and refresh_token grants, get organizations list. Covers 5 operations with bearer authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Snackeet 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%2Fsnackeet.com%2Fsnackeet" | 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%2Fsnackeet.com%2Fsnackeet" | 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 Snackeet API.
Get Token for both authorization_code and refresh_token grants
Extract answers of all story's users
Integrate Snackeet API into automated workflows
Query and filter Snackeet API records by parameters
GET STARTED
Use for: I need to token for both authorization_code and refresh_token grants, I want to organizations list, Search for projects (workspaces) list, Find all stories list
Not supported: Does not handle payments, crm, or developer tools - use for communications only.
API for Snackeet integration. Snackeet is a visual builder for creating stunning interactive and conversational short stories, online quizzes, surveys, polls and much more. This API enables OAuth authentication, organization/project/story management, and user answer extraction. The API exposes 5 endpoints secured with bearer authentication.
Monitor Snackeet API operational status and events
Patterns agents use Snackeet API for, with concrete tasks.
★ Communications Operations
Use the Snackeet API to perform communications operations programmatically. The API provides 5 endpoints covering core functionality including get token for both authorization_code and refresh_token grants, get organizations list, get projects (workspaces) list.
Call POST /oauth/token to get token for both authorization_code and refresh_token grants
Automated OAuth Management
Automate oauth operations by combining multiple Snackeet API endpoints. Agents can get organizations list and then get projects (workspaces) list in a single workflow.
Call GET /organizations to get organizations list, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Snackeet 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.
Search Jentic for 'get token for both authorization_code and refresh_token grants', load the operation schema, and execute with Jentic-managed credentials
5 endpoints — api for snackeet integration.
METHOD
PATH
DESCRIPTION
/oauth/token
Get Token for both authorization_code and refresh_token grants
/organizations
Get organizations list
/projects
Get projects (workspaces) list
/snackeets
Get stories list
/users/answers
Extract answers of all story's users
/oauth/token
Get Token for both authorization_code and refresh_token grants
/organizations
Get organizations list
/projects
Get projects (workspaces) list
/snackeets
Get stories list
/users/answers
Extract answers of all story's users
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Snackeet API by hand means obtaining a token through its OAuth token endpoint, sending it as bearer auth on every request, and managing refresh yourself. Through Jentic you install once, import the Snackeet API from the API Directory, store the token once, and your agent calls it.
Permission scoping
The Snackeet API identifies work by operation rather than a resource id in the URL path, so limit the agent to the operations it needs, such as listing organizations, projects, or story answers. You choose that set, so read-only listing can be included while token minting stays out.
Credential isolation
Your Snackeet API 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.
Intent-based discovery
Agents search Jentic by intent such as 'list my projects' or 'get story answers', and Jentic returns the matching Snackeet 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.
Specific to using Snackeet API through Jentic.
What authentication does the Snackeet API use?
The Snackeet 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 get token for both authorization_code and refresh_token grants with the Snackeet API?
Yes. Use the POST /oauth/token endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Snackeet 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 token for both authorization_code and refresh_token grants through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'get token for both authorization_code and refresh_token grants'. Jentic returns the matching Snackeet API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Snackeet API have?
The Snackeet API exposes 5 endpoints covering oauth, organizations, projects operations.