---
title: "setBaseUrl( url ) | Grafana k6 documentation"
description: "sets the base URL for the session"
---

# setBaseUrl( url )

Expand table

| Parameter | Type   | Description                                                |
|-----------|--------|------------------------------------------------------------|
| baseURL   | string | Base URL to be used for all requests issued in the session |

### Example

JavaScript ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```javascript
import { Httpx } from 'https://jslib.k6.io/httpx/0.1.0/index.js';

const session = new Httpx();

session.setBaseUrl('https://quickpizza.grafana.com');

export default function () {
  session.get('/api/names'); // baseUrl doesn't need to be repeated on every request
}
```
