canonical: https://jentic.com/apis/rampnetwork.com/rampnetwork

# Ramp Network REST API

Ramp Network crypto on-ramp/off-ramp REST API for managing purchases, assets, and quotes. The API exposes 6 endpoints secured with apiKey authentication.

## For AI agents

Programmatically list assets, get purchase. Covers 6 operations with apiKey authentication.

## Scope

Does not handle payments, communications, or crm - use for developer tools only.

## Capabilities

- List assets
- Get purchase
- Create purchase
- Access Ramp Network REST API developer tools resources via REST API

## Use cases

### 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.

Example prompt: 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.

Example prompt: 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.

Example prompt: Search Jentic for 'list assets', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/host-api/assets` | List assets |
| GET | `/host-api/purchase/{purchaseId}` | Get purchase |
| POST | `/host-api/purchase` | Create purchase |
| POST | `/host-api/quote` | Get quote |
| GET | `/host-api/offramp/assets` | List off-ramp assets |
| POST | `/host-api/offramp/quote` | Get off-ramp quote |

## Key resources

- **Assets** — Operations related to Assets
- **Off-Ramp** — Operations related to Off-Ramp
- **Purchases** — Operations related to Purchases
- **Quotes** — Operations related to Quotes

## Why Jentic

- **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 handling:** 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.
- **Discovery method:** 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.

## Related APIs

- **Github** — Alternative developer tools API
- **Gitlab** — Alternative developer tools API

## FAQ

### 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.
