# `403` - Forbidden ## Description The request you are trying to execute requires certain authorisations associated with the access token you pass to the call. ## How to fix - Check which authorisations are required for the API call in the [API Reference](/api). - Validate the implementation on your side and ensure that all necessary authorisations are requested for the access token used for the API call. ## Example ```http HTTP/1.1 403 Forbidden content-length: 165 content-type: application/problem+json date: Mon, 11 Oct 2021 10:42:01 GMT upvest-request-id: 307e1425-37d5-4052-8ad3-7b9c43ce9be8 { "type": "https://docs.upvest.co/errors/forbidden", "status": 403, "title": "Forbidden", "request_id": "307e1425-37d5-4052-8ad3-7b9c43ce9be8" } ```