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

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

The question should be specific, self-contained, and written in natural language.
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.
