> ## Documentation Index
> Fetch the complete documentation index at: https://developers.pleo.io/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Make an API Call Using a Standalone API Key (Postman)

export const WhatComesNext = ({children, href}) => <div className="mt-4">
    <a href={href} className="btn-primary">
      {children} →
    </a>
  </div>;

export const RememberCallout = ({title, children}) => <div className="callout-box callout-remember">
    <div className="callout-row">
      <span className="callout-icon">
        <svg width="22" height="22" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" fill="currentColor"><path d="M229.66,98.34,172.39,155.8c11.46,22.93-1.72,45.86-10.11,57a8,8,0,0,1-12,.83L42.34,105.76A8,8,0,0,1,43,93.85c29.65-23.92,57.4-10,57.4-10l57.27-57.46a8,8,0,0,1,11.31,0L229.66,87A8,8,0,0,1,229.66,98.34Z" opacity="0.2" /><path d="M235.32,81.37,174.63,20.69a16,16,0,0,0-22.63,0L98.37,74.49c-10.66-3.34-35-7.37-60.4,13.14a16,16,0,0,0-1.29,23.78L85,159.71,42.34,202.34a8,8,0,0,0,11.32,11.32L96.29,171l48.29,48.29A16,16,0,0,0,155.9,224c.38,0,.75,0,1.13,0a15.93,15.93,0,0,0,11.64-6.33c19.64-26.1,17.75-47.32,13.19-60L235.33,104A16,16,0,0,0,235.32,81.37ZM224,92.69h0l-57.27,57.46a8,8,0,0,0-1.49,9.22c9.46,18.93-1.8,38.59-9.34,48.62L48,100.08c12.08-9.74,23.64-12.31,32.48-12.31A40.13,40.13,0,0,1,96.81,91a8,8,0,0,0,9.25-1.51L163.32,32,224,92.68Z" /></svg>
      </span>
      <div>
        {title && <div className="callout-title">
            {title}
          </div>}
        <div className="callout-body">
          {children}
        </div>
      </div>
    </div>
  </div>;

This how-to covers making an API call using Standalone API Keys and **Postman**. For the full cURL instructions, where you use the command line, see the [How to Make an API Call Using a Standalone API Key](/docs/current/how-tos/api-keys/how-to-make-an-api-call-using-standalone-api-keys) instead.

## Prerequisites

Before you begin:

* You have [generated a Standalone API Key](/docs/current/how-tos/api-keys/how-to-generate-standalone-api-keys)

## Steps

### 1. Create an HTTP Request

In your Postman collection:

1. Click **New** and then select **HTTP Request**
2. Ensure that the HTTP method corresponds to the endpoint being called, for example: `GET`
3. Enter the **Staging URL** for the Pleo API you want to test, for example: `https://external.staging.pleo.io/v2/employees`

<div style={{ textAlign: "center" }}>
  <img src="https://mintcdn.com/pleo-61d4d38b/_rkxCoO48Dr_L3ku/images/current/standalone-api-keys/standalone-api-keys-postman-new-request.png?fit=max&auto=format&n=_rkxCoO48Dr_L3ku&q=85&s=62034892e26e0051f8d6a7beaa92f601" alt="Postman GET HTTP Request" width="100%" style={{ display: "block", margin: "0 auto" }} data-path="images/current/standalone-api-keys/standalone-api-keys-postman-new-request.png" />
</div>

### 2. Add Authorisation

1. Click the **Authorization** tab
2. Select **Basic Auth** as the **Auth Type**
3. Enter your **Standalone API Key** as the **Username**
4. Leave the **Password** field blank

<div style={{ textAlign: "center" }}>
  <img src="https://mintcdn.com/pleo-61d4d38b/_rkxCoO48Dr_L3ku/images/current/standalone-api-keys/standalone-api-keys-postman-auth.png?fit=max&auto=format&n=_rkxCoO48Dr_L3ku&q=85&s=71cf509b7e1b3d3478e0c334e27ecce2" alt="Postman GET HTTP Request" width="100%" style={{ display: "block", margin: "0 auto" }} data-path="images/current/standalone-api-keys/standalone-api-keys-postman-auth.png" />
</div>

### 3. Send the Request

1. Click the **Send** button at the top of the screen
2. If everything is configured correctly, you should receive a JSON response

<div style={{ textAlign: "center" }}>
  <img src="https://mintcdn.com/pleo-61d4d38b/_rkxCoO48Dr_L3ku/images/current/standalone-api-keys/standalone-api-keys-postman-response.png?fit=max&auto=format&n=_rkxCoO48Dr_L3ku&q=85&s=93bd7e8e59acc753893d1fb449bccef1" alt="Postman GET HTTP Response" width="100%" style={{ display: "block", margin: "0 auto" }} data-path="images/current/standalone-api-keys/standalone-api-keys-postman-response.png" />
</div>

## Result

After completing these steps:

* You have successfully made a Pleo API call using Standalone API Keys in Postman

***

## What Comes Next?

<WhatComesNext href="/docs/current/guides/standalone-api-keys-workflow-guide">
  Go back to guide
</WhatComesNext>

***

<div className="text-xs uppercase" style={{ fontVariant: 'small-caps' }}>
  this how-to is part of:
</div>

<div className="mt-4 flex flex-wrap gap-2">
  <a
    href="/docs/current/guides/standalone-api-keys-workflow-guide"
    className="inline-flex items-center rounded-full border border-gray-300 dark:border-gray-600 
px-3 py-1 text-xs font-medium 
bg-white dark:bg-[#1f262b] text-black dark:text-white
hover:bg-gray-100 dark:hover:bg-[#2b2f33]
transition-colors"
  >
    Standalone API Key Workflow Guide
  </a>
</div>

***

## Related Reading

* [OAuth 2.0 Setup with Postman Workflow Guide](/docs/current/guides/oauth-workflow-guide-postman): Step-by-step instructions on how to configure OAuth 2.0 where Postman handles the full token lifecycle.

***
