> For the complete documentation index, see [llms.txt](https://sspwallet.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sspwallet.gitbook.io/docs/ssp-relay-development/project-folders/src/routes.ts/get-v1-services.md).

# GET /v1/services

<mark style="color:green;">`GET`</mark> **/v1/services**

**Request**

{% tabs %}
{% tab title="Curl" %}

```url
curl --location 'https://relay.sspwallet.io/v1/services'
```

{% endtab %}
{% endtabs %}

**Response**

<table><thead><tr><th width="191">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>onramp</td><td>is onramp enabled</td></tr><tr><td>offramp</td><td>is offramp enabled</td></tr><tr><td>swap</td><td>is swap enabled</td></tr></tbody></table>

{% tabs %}
{% tab title="200 - Success" %}

```json
{
    "onramp": true,
    "offramp": true,
    "swap": true
}
```

{% endtab %}
{% endtabs %}
