---
title: "Make Your First Request"
slug: "make-your-first-request"
updated: 2024-04-04T07:34:35Z
published: 2024-04-04T07:34:35Z
canonical: "docs.connect.visma.com/make-your-first-request"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.connect.visma.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Make Your First Request

After your application obtains an Access Token, it can use that to make calls to the Visma API resources. To do this, include the Access Token in the request to the API by adding it in the authorization: Bearer HTTP header.

Example:

```http
curl --request GET --url https://api.visma.com/api/resource --header 'accept: application/json' --header 'authorization: Bearer [YOUR_ACCESS_TOKEN]'
```
