> For the complete documentation index, see [llms.txt](https://padiwise.gitbook.io/padiwise/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://padiwise.gitbook.io/padiwise/getting-started/quickstart.md).

# Quickstart

* **Create an Account**\
  Sign up on [Padiwise](https://padiwise.com) and complete your KYC verification. The process is fast, it takes less than a minute.
* **Start Building**\
  Use our comprehensive API documentation and endpoints to begin integrating Padiwise services into your platform. Our tokens are long-lived, so you don’t need to worry about frequent renewals.

{% hint style="info" %}
*Note: API tokens are available only to registered agent users.*
{% endhint %}

#### **API Environment Details**

To make testing and developing with our API, we make use of the different API endpoints for sandbox and production, with the same **access token** used when calling the APIs.

| Name          | Value                                                                 |
| ------------- | --------------------------------------------------------------------- |
| {{ BASE }}    | <https://padiwise.com/api/v1/>                                        |
| {{ SANDBOX }} | [https://padiwise.com/api/sandbox/](https://padiwise.com/api/sandbox) |

### Requests and Responses <a href="#requests-and-responses" id="requests-and-responses"></a>

Both request body data and response data are formatted as JSON. Content type for responses will always be `application/json`. Generally, all responses will be in the following format:

{% code overflow="wrap" lineNumbers="true" %}

```php
{
  "status": "[boolean]",
  "message": "[string]",
  "data": "[object]"
}
```

{% endcode %}
