> For the complete documentation index, see [llms.txt](https://docs.cashramp.co/cashramp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cashramp.co/cashramp/hosted-ramp/overview.md).

# Overview

**Hosted Ramp** provides a pre-built, customizable checkout experience that lets your customers pay in local African currencies while you receive instant USD stablecoin settlements.

## Features

* **Low-Code Integration**: Drop in our widget with minimal setup
* **Multi-Currency**: Accept 10+ African currencies via popular payment methods
* **Instant Settlement**: Receive USD stablecoins as soon as the payment is confirmed

## Integration Steps

1. **Create Payment Link**

   ```graphql
   mutation {
     initiateHostedPayment(
       paymentType: deposit,
       amount: 100,
       currency: usd,
       countryCode: "NG",
       reference: "order_123",
       email: "test@test.com",
       firstName: "John",
       lastName: "Doe",
       metadata: {
         "customer_id": "123",
         "order_id": "456"
       }
     ) {
       hostedLink
       id
     }
   }
   ```
2. **Redirect Customer**

   ```javascript
   // Redirect to hosted checkout
   window.location.href = hostedLink;

   // Or embed in iframe
   <iframe src={hostedLink} />;
   ```

## Common Use Cases

| Industry             | Implementation                   |
| -------------------- | -------------------------------- |
| **E-Commerce**       | Embed checkout in cart flow      |
| **SaaS**             | Subscription & one-time payments |
| **Marketplaces**     | Multi-vendor payments            |
| **Digital Services** | Pay-as-you-go billing            |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.cashramp.co/cashramp/hosted-ramp/overview.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
