# Testing in Sandbox

### Test vs Live

| Aspect           | Test (sk\_test\_)  | Live (sk\_live\_)  |
| ---------------- | ------------------ | ------------------ |
| Real money       | No                 | Yes                |
| Banking rails    | Simulated          | Real               |
| KYC verification | Simulated          | Full verification  |
| Exchange rates   | Simulated          | Live market rates  |
| Webhooks         | Delivered normally | Delivered normally |

### Testing workflow

1. **Create a test API key** in the dashboard
2. **Create a test recipient** — KYC will be simulated
3. **Request a quote** — rates are simulated but the flow is identical
4. **Execute a transfer** — goes through all lifecycle states
5. **Verify webhooks** — your endpoint receives test events
6. **Inspect request logs** — verify request/response pairs

### Moving to production

1. Complete the go-live checklist in the dashboard
2. Create a live API key
3. Update your application to use the live key
4. Monitor the first few live transactions closely

{% hint style="warning" %}
Test and live keys use the same API endpoints. Make sure your production environment uses the correct key.
{% endhint %}


---

# 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.zynta.com/guides/testing-in-sandbox.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.
