> ## Documentation Index
> Fetch the complete documentation index at: https://developer.kiotapay.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Send Money Status API

> Retrieves the status of a send money transaction based on  `requestId`.

# Get Send Money Status API

This API retrieves the status of a send money transaction based on a `requestId`.

## Endpoint

GET /api/sandbox/v1/send-money/status

### Base URL

[`https://api.kiotapay.co`](https://api.kiotapay.co)

## Query Parameters

| Parameter   | Type     | Description                                                                | Required |
| ----------- | -------- | -------------------------------------------------------------------------- | -------- |
| `companyId` | `string` | The ID of the company requesting the status of the send money transaction. | ✅        |
| `requestId` | `string` | The unique ID of the send money transaction.                               | ✅        |

## **Request Headers**

| Key             | Value                 | Required | Description                                                        |
| --------------- | --------------------- | -------- | ------------------------------------------------------------------ |
| `Content-Type`  | `application/json`    | ✅        | Specifies that the request body is in JSON format.                 |
| `Authorization` | `Bearer <your-token>` | ✅        | API authentication token. Replace `<your-token>` with a valid JWT. |

## Interactive API

<InteractiveApi
  method="GET"
  url="https://api.kiotapay.co/api/sandbox/v1/send-money/status"
  queryParameters={[
{
name: "requestId",
type: "string",
description: "The unique ID of the send money transaction.",
required: true,
example: "cd3e5b37-8f23-465e-a720-b2a78f2b62c1"
}
]}
/>

## Example Curl Request

```bash theme={null}
curl --location 'https://api.kiotapay.co/api/sandbox/v1/send-money/status?requestId=cd3e5b37-8f23-465e-a720-b2a78f2b62c1'
```

**Example Response**

```json theme={null}
{
    "status": 200,
    "message": "Success",
    "data": {
        "requestId": "cd3e5b37-8f23-465e-a720-b2a78f2b62c1",
        "phoneNumber": "254745362174",
        "status": "PENDING",
        "amount": 1000.0
    }
}
```
