You can use Postman or another API testing tool to try out your API request. Here's how to do it using Postman:

  1. Open the Postman desktop app or go to the Postman web portal.
  2. Log in to your Postman account.
  3. Create a new request.
  4. Set the request method to GET.

In Find and Use an API:

  1. Go to Operations details for the API you are testing to confirm the GET operation is supported.
  2. Go to Environments detial.
  3. Copy the Base URL.

In Postman:

  1. Go to the request field.
  2. Paste the Base URL.

In Find and Use an API:

  1. Go to Operations details.
  2. Copy the URL template value. For example, '/info'. This represents the operation you are about to test using the GET operation.

Then in Postman

  1. Paste that URL template value into the Request field. Append the URL template to the end of the Base URL in your request.
  2. Add a subscription key. If the API uses OAuth Application-flow, you’ll also need to get an API subscription token.
  3. Select the Send to submit the request.