---
title: "A Useful Process for API Exploration"
slug: "a-useful-process-for-api-exploration"
updated: 2022-12-13T02:02:09Z
published: 2022-12-13T02:02:09Z
---

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

# A Useful Process for API Exploration

## authentication

Most FCs require user authentication for API access. In order to perform API calls, your simulator or client must add an appropriate Bearer Token to the request header.

## process

1. Download and install [Postman](https://www.postman.com/downloads/).
2. In your browser (given example is Google Chrome), go to your authorized ***.tag.bio site**, where ***** represents your organization name. [https://developer.tag.bio](https://developer.tag.bio) also works in a pinch.
3. Open up the JavaScript developer console and navigate to the Network tab.
4. Refresh the home page with the Network tab recording.
5. Select one of the “s” outbound requests - this is an API call to an FC. Within the Network tab, navigate to the Headers subsection. There are three pieces of information you will want to copy and use in Postman.
  - The FC URL. Copy and paste it into the URL field of Postman. ![api-request-url](https://cdn.document360.io/2bd95121-d9ee-4ca9-a76a-2725b127d6bd/Images/Documentation/api-request-url.png) ![api-request-url-postman](https://cdn.document360.io/2bd95121-d9ee-4ca9-a76a-2725b127d6bd/Images/Documentation/api-request-url-postman.png)
  - The authorization token - copy everything after “Bearer”. Paste it into the Authorization section of Postman, using the “Bearer Token” type. ![api-authorization-token](https://cdn.document360.io/2bd95121-d9ee-4ca9-a76a-2725b127d6bd/Images/Documentation/api-authorization-token.png) ![api-authorization-token-postman](https://cdn.document360.io/2bd95121-d9ee-4ca9-a76a-2725b127d6bd/Images/Documentation/api-authorization-token-postman.png)
  - The request payload. Copy and paste the JSON string into the Body section of Postman. ![api-request-payload](https://cdn.document360.io/2bd95121-d9ee-4ca9-a76a-2725b127d6bd/Images/Documentation/api-request-payload.png) ![api-request-payload-postman](https://cdn.document360.io/2bd95121-d9ee-4ca9-a76a-2725b127d6bd/Images/Documentation/api-request-payload-postman.png)
6. You should now be able to run a FC API request via Postman, and see the results in the bottom section. ![api-request-postman](https://cdn.document360.io/2bd95121-d9ee-4ca9-a76a-2725b127d6bd/Images/Documentation/api-request-postman.png)
