Get Started
This page shows you how to start using our API.
Last updated
This page shows you how to start using our API.
Last updated
API (Application Programming Interface) allows applications to communicate with each other. Postman is a powerful tool for interacting with APIs, making it easy to test The Furniture Bros API. This guide will walk you through the basics of using Postman to get started with APIs.
Install Postman
Visit Postman's website.
Download and install the Postman app for your operating system.
Launch Postman and create an account if required.
Understand the Collection Structure
Each collection consists of requests grouped into .
Click on a request to view:
URL: The API endpoint.
Method: GET, POST, PUT, DELETE, etc.
Headers: Metadata required by the API.
Body (if applicable): Data to send with POST or PUT requests.
Learn more about the structure of a REST API by visiting thepage.
Open the collection and select a request. For example, you can use the POST http://thefurniturebros.com/auth/register
. This request is located under the Account category.
Fill out the "Body" tab with your account name
, email
and password
.
Click "Send" to execute the request.
Review the response in the bottom panel:
Status Code: Confirms request success (e.g., 200 OK).
Body: Displays response data from the API.
If your request is successful, you will receive an API Key. This key acts like a password; it verifies your identify when making a request. Some endpoints require request to be made with an API Key, while some don't. Learn more about .
Explore the API’s full capabilities by running all the requests in the collection.
Share the collection with your team using Postman’s sharing options.
Start integrating The Furniture Bros API into your application.
By following this guide, you'll be able to use the provided Postman collection to interact with the API effectively.