Loading...
Notecard Disconnected
Having trouble connecting?

Try changing your USB cable as some cables do not support transferring data. If that does not solve your problem, contact us at support@blues.com and we will get you set up with another tool to communicate with the Notecard.

Advanced Usage

The help command gives more info.

Connect a Notecard
Use USB to connect and start issuing requests from the browser.
Try Notecard Simulator
Experiment with the Notecard's API on a Simulator assigned to your free Notehub account.

Don't have an account? Sign up

What Happens After the Prototype? Explore Blues' Connected Product Guidebook

Blues Developers
What’s New
Resources
Blog
Technical articles for developers
Connected Product Guidebook
In-depth guides for connected product development
Developer Certification
Get certified on wireless connectivity with Blues
Newsletter
The monthly Blues developer newsletter
Terminal
Connect to a Notecard in your browser
Webinars
Listing of Blues technical webinars
Blues.comNotehub.io
Shop
Docs
Button IconHelp
Support DocsNotehub StatusVisit our Forum
Button IconSign In
Docs Home
What’s New
Resources
Blog
Technical articles for developers
Connected Product Guidebook
In-depth guides for connected product development
Developer Certification
Get certified on wireless connectivity with Blues
Newsletter
The monthly Blues developer newsletter
Terminal
Connect to a Notecard in your browser
Webinars
Listing of Blues technical webinars
Blues.comNotehub.io
Shop
Docs
Tools & SDKs
Notecard CLI
Firmware Libraries
Arduino Library
C and C++ Library
ESP-IDF Library
Go Library
Python Library
Zephyr Library
Notehub SDKs
Notehub JS Library
Notehub Py Library
Notehub API Postman Collection
Generative AI Tools
MCP Servers
homechevron_rightDocschevron_rightTools & SDKschevron_rightNotehub Sdkschevron_rightNotehub API Postman Collection

Notehub API Postman Collection

The Notehub API Postman Collection is a pre-built set of requests for the Notehub API, ready to use in the Postman API platform. It covers the full set of Notehub API endpoints, making it easy to explore, test, and prototype API calls without writing any code.

In this article you'll learn how to download and import the collection, how to set up authentication, and then how to perform your first request.

Using the Collection

The basic steps of getting up and running with the Notehub API Postman Collection is relatively straightforward.

  1. If necessary, download and install the Postman app.

  2. Download our Notehub API Postman Collection as a JSON file.

  3. Import the collection into Postman. The easiest way to do this is to drag and drop the .json file into the Postman app.

Set Up Authentication

With the collection imported, your next step is to set up the necessary authentication for accessing the Notehub API.

  1. Generate a Personal Access Token in Notehub and copy the token itself to your clipboard.

  2. In Postman, click the Vault icon (bottom-right corner), then create a new entry. Set the Key to notehub_api_token, and paste in the token from your clipboard as the Value. Creating an API token in the Postman vault

  3. While still in Postman, open your Notehub API Collection by clicking the Notehub API folder.

  4. Next, open the collection's Scripts tab, and then paste in the script below as a Pre-request script.

    pm.vault.get("notehub_api_token")
      .then(token => {
        pm.variables.set("bearerToken", token);
    });

Here's what everything should look like when you're all set.

Registering a pre-request script in Postman

In Postman, pre-request scripts run before every request in a collection. In this case, the pre-request script takes the notehub_api_token value from your vault and sets it as a variable named "bearerToken". All Notehub API requests use the "bearerToken" variable for authorization, so once you have this script in place you're ready to make your first request.

Performing a Request

The Notehub API collection is organized by folders that match the URLs of the underlying requests. For example, the Get Projects request uses a URL of /v1/projects, and therefore its request in Postman is in a Notehub API/v1/projects folder.

Let's invoke this request so you can see how it all works.

  1. Within Postman, select the Get Projects request. Look for it under Notehub API/v1/projects/Get Projects in your Notehub API collection (see screenshot below).

  2. Invoke the request by clicking the blue Send button. If all went well, you should see the response at the bottom of the app in the Body. Invoking a request in Postman

And that's it! The great thing about using the Postman collection is it prefills all available request arguments. When performing GET requests the arguments will be listed in the Query Params.

List of request arguments in Postman

And when performing PUT and POST requests the available arguments are prefilled in the request's Body.

Prefilled data in the body in Postman

Can we improve this page? Send us feedback
© 2026 Blues Inc.
© 2026 Blues Inc.
TermsPrivacy