Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Ramp Network REST 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%2Frampnetwork.com%2Frampnetwork" | 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%2Frampnetwork.com%2Frampnetwork" | 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 Ramp Network REST API.
List assets
Get purchase
Create purchase
Access Ramp Network REST API developer tools resources via REST API
Patterns agents use Ramp Network REST API for, with concrete tasks.
GET STARTED
★ Developer Tools Operations
Use the Ramp Network REST API to perform developer tools operations programmatically. The API provides 6 endpoints covering core functionality including list assets, get purchase, create purchase.
Call GET /host-api/assets to list assets
Automated Assets Management
Automate assets operations by combining multiple Ramp Network REST API endpoints. Agents can get purchase and then create purchase in a single workflow.
Call GET /host-api/purchase/{purchaseId} to get purchase, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Ramp Network REST 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 'list assets', load the operation schema, and execute with Jentic-managed credentials
6 endpoints — ramp network crypto on-ramp/off-ramp rest api for managing purchases, assets, and quotes.
METHOD
PATH
DESCRIPTION
/host-api/assets
List assets
/host-api/purchase/{purchaseId}
Get purchase
/host-api/purchase
Create purchase
/host-api/quote
Get quote
/host-api/offramp/assets
List off-ramp assets
/host-api/offramp/quote
Get off-ramp quote
/host-api/assets
List assets
/host-api/purchase/{purchaseId}
Get purchase
/host-api/purchase
Create purchase
/host-api/quote
Get quote
/host-api/offramp/assets
List off-ramp assets
/host-api/offramp/quote
Get off-ramp quote
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Ramp Network REST API by hand means passing its X-API-Key header on every call and hand-coding requests across its asset, quote, and purchase endpoints. Through Jentic you install once, import the Ramp Network REST API from the API Directory, store the API key once, and your agent calls it.
Permission scoping
Ramp Network puts the purchase id in the URL path (/host-api/purchase/{purchaseId}), so a rule can pin your agent to reading one purchase, while its quote and asset calls carry their targets in the request body. You limit the agent to the operations it needs, such as listing assets or requesting a quote, so anything beyond that is not included unless you add it.
Credential isolation
Your Ramp Network API key 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 'get a crypto purchase quote' or 'list supported assets', and Jentic returns the matching Ramp Network 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 Ramp Network REST API through Jentic.
What authentication does the Ramp Network REST API use?
The Ramp Network REST API uses an API key passed in the `X-API-Key` 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 list assets with the Ramp Network REST API?
Yes. Use the GET /host-api/assets endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Ramp Network REST 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 list assets through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'list assets'. Jentic returns the matching Ramp Network REST API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Ramp Network REST API have?
The Ramp Network REST API exposes 6 endpoints covering assets, off-ramp, purchases operations.
Can I limit what my agent is allowed to do with the Ramp Network REST API?
Yes. Jentic One is self-hosted, so your own rules decide which Ramp Network operations and credentials the agent may use. You can allow only the calls it needs, such as GET /host-api/assets to list assets or POST /host-api/quote to request a quote, and leave out anything else. Because the purchase id sits in the URL path (GET /host-api/purchase/{purchaseId}), you can even pin the agent to reading a single purchase, and it cannot create purchases or call off-ramp endpoints unless you add those operations.
For Agents
Programmatically list assets, get purchase. Covers 6 operations with apiKey authentication.
Use for: I need to assets, I want to purchase, Search for purchase, Find all quote
Not supported: Does not handle payments, communications, or crm - use for developer tools only.
Ramp Network crypto on-ramp/off-ramp REST API for managing purchases, assets, and quotes. The API exposes 6 endpoints secured with apiKey authentication.