canonical: https://jentic.com/apis/revolut.com/crypto-ramp-api

# Revolut Crypto Ramp API

[Revolut Ramp web app](https://ramp.revolut.com/) allows Revolut customers and non-Revolut users to buy crypto using fiat money, where the crypto is issued to the desired address on blockchain. It can also be used as an embeddable widget for integrating with Revolut Partners (crypto exchanges, wallets, NFT-marketplaces etc.) In addition to the web app, we provide this Crypto Ramp API. The API endp. The API exposes 10 endpoints secured with apiKey authentication.

## For AI agents

Programmatically retrieve configuration, retrieve an order quote. Covers 10 operations with apiKey authentication.

## Scope

Does not handle payments, communications, or crm - use for e-commerce only.

## Capabilities

- Retrieve configuration
- Update a webhook
- Integrate Crypto Ramp API into automated workflows
- Query and filter Crypto Ramp API records by parameters
- Monitor Crypto Ramp API operational status and events

## Use cases

### E-Commerce Operations

Use the Crypto Ramp API to perform e commerce operations programmatically. The API provides 10 endpoints covering core functionality including retrieve configuration, retrieve an order quote, retrieve a redirect url.

Example prompt: Call GET /config to retrieve configuration

### Automated Partners Management

Automate partners operations by combining multiple Crypto Ramp API endpoints. Agents can retrieve an order quote and then retrieve a redirect url in a single workflow.

Example prompt: Call GET /quote to retrieve an order quote, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Crypto Ramp 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 'retrieve configuration', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | /config | Retrieve configuration |
| GET | /quote | Retrieve an order quote |
| GET | /buy | Retrieve a redirect URL |
| GET | /orders/{order_id} | Retrieve an order |
| GET | /orders | Retrieve all orders |
| GET | /webhooks/{webhook_id} | Retrieve a webhook |
| PATCH | /webhooks/{webhook_id} | Update a webhook |
| DELETE | /webhooks/{webhook_id} | Delete a webhook |

## Key resources

- **Partners** — The **Partners** endpoints let you poll different exchange rates, display them on your website and c
- **Webhooks** — A webhook (also called a web callback) allows your system to receive an event from Ramp immediately

## Why Jentic

- **Setup:** Wiring the Revolut Crypto Ramp API by hand means handling its X-API-KEY header auth, pointing calls at ramp-partners.revolut.com, and managing retries yourself. Through Jentic you install once, import the Crypto Ramp API from the API Directory, store the API key once, and your agent calls it.
- **Permission scoping:** Crypto Ramp puts the order id in the URL path (/orders/{order_id}), so a rule can pin your agent to one order: it can read that order and nothing else. You choose the operations it may call, so ones like deleting a webhook or patching webhook settings are not included unless you add them.
- **Credential handling:** Your Crypto Ramp 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 'retrieve configuration' or 'get a buy quote', and Jentic returns the matching Crypto Ramp API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Shopify** — Alternative e commerce API
- **Stripe** — Alternative e commerce API

## FAQ

### What authentication does the Crypto Ramp API use?

The Crypto Ramp 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 retrieve configuration with the Crypto Ramp API?

Yes. Use the GET /config endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the Crypto Ramp 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 retrieve configuration through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'retrieve configuration'. Jentic returns the matching Crypto Ramp API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Crypto Ramp API have?

The Crypto Ramp API exposes 10 endpoints covering partners, webhooks operations.

### Can I limit what my agent is allowed to do with the Crypto Ramp API?

Yes. Jentic One runs self-hosted, so your own rules decide which Crypto Ramp API operations and credentials the agent can use. Because the order id sits in the URL path at GET /orders/{order_id}, a rule can pin the agent to a single order so it reads only that record. You choose the operations it may call, so write actions like PATCH or DELETE on /webhooks/{webhook_id} stay off the table unless you add them.
