Getting Started

bizAPIs Documentation

bizAPIs is a solution that assists companies in automating their processes, allowing access to external data such as standards and market information, etc. Moreover, it keeps companies up-to-date with changes, making operations more efficient and secure to make more informed decisions.

This page aims to provide guidance to facilitate the integration process of data coming from our bizAPIs product API and to explain some specific features of the product.

Workflow

Subscriptions (API Key)

To make requests to the bizAPIs API, it is necessary for the developer to have an API key (or, as we call it, a subscription).

The subscription is responsible for identifying the user and persisting information about which services (endpoints) the developer has access to.

Registration for each of the services is individual, and at this moment, the developer has to make a request to our team using this contact form.

Mock data

Most of the services currently have mock data to ensure that developers can perform simulations of the requests during the initial phases of integration with the API, restricting access to real data.

All requests made with the API Key provided in the documentation are solely and exclusively intended for the test data.

If there is an interest in moving to an integration using real data, get in touch with us using this contact form.

Contacts

For more information about the product, you can visit our website, or get in touch with us using this contact form.

How Make a Request

Each API contains essential documentation that provides necessary information about the endpoints, the API Key, parameters, and the available responses.

Test in Postman:

Postman URL
  • Set up the URL:
    1. Select the POST method.
    2. The specific URL for each endpoint is provided in the documentation for each API. Copy the URL corresponding to the desired endpoint.
URL Example


Authorization
  • Set up Authorization:
    1. Go to the "Authorization" tab in Postman.
    2. In the "Type" field, select "Bearer Token".
    3. Paste the API Key into the "Token" field.
Authorization Example


Request Body
  • Set up Request Body:
    1. In Postman, select the "Body" tab
    2. Choose the "raw" option.
    3. Ensure the selected format is "JSON".
    4. Copy the requestBody according to the format specified in the API documentation.
Request Body Example


Response
  • Send the request:
    1. After setting up the URL, authorization, and request body, click the "Send" button to send the request to the API. By following these steps, you will be ready to start interacting with the API.

HTTP Status Code

Status CodeMessage Code
200OK
401Unauthorized
429Too many requests
500Internal Server Error
503Service Unavailable
504Gateway Timeout