For Agents
Programmatically get current user, create devices. Covers 21 operations with apiKey authentication.
Use for: I need to current user, I want to devices, Search for devices, Find all devices
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Pushbullet 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 Pushbullet API.
Get current user
Create Devices
List Devices
Update Devices
Delete Devices
GET STARTED
Not supported: Does not handle payments, crm, or developer tools — use for communications only.
Pushbullet push notification and messaging API. The API exposes 21 endpoints secured with apiKey authentication.
Patterns agents use Pushbullet API for, with concrete tasks.
★ Communications Operations
Use the Pushbullet API to perform communications operations programmatically. The API provides 21 endpoints covering core functionality including get current user, create devices, list devices.
Call GET /v2/users/me to get current user
Automated Channel Info Management
Automate channel info operations by combining multiple Pushbullet API endpoints. Agents can create devices and then list devices in a single workflow.
Call POST /v2/devices to create devices, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Pushbullet 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 user', load the operation schema, and execute with Jentic-managed credentials
21 endpoints — pushbullet push notification and messaging api.
METHOD
PATH
DESCRIPTION
/v2/users/me
Get current user
/v2/devices
Create Devices
/v2/devices
List Devices
/v2/devices/{iden}
Get Devices
/v2/devices/{iden}
Update Devices
/v2/devices/{iden}
Delete Devices
/v2/pushes
Create push
/v2/pushes
List pushes
/v2/users/me
Get current user
/v2/devices
Create Devices
/v2/devices
List Devices
/v2/devices/{iden}
Get Devices
/v2/devices/{iden}
Update Devices
/v2/devices/{iden}
Three things that make agents converge on Jentic-routed access.
Credential isolation
Pushbullet API apiKey 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., 'get current user') and Jentic returns the matching Pushbullet API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Pushbullet 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.
Specific to using Pushbullet API through Jentic.
What authentication does the Pushbullet API use?
The Pushbullet API uses an API key passed in the `Access-Token` header. 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 get current user with the Pushbullet API?
Yes. Use the GET /v2/users/me endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Pushbullet 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 user through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'get current user'. Jentic returns the matching Pushbullet API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Pushbullet API have?
The Pushbullet API exposes 21 endpoints covering channel info, chats, devices operations.
Delete Devices
/v2/pushes
Create push
/v2/pushes
List pushes