Export OpenAPI File
The AXSMarine API Hub documentation is available as an OpenAPI 3.0 specification export.
β¬οΈ Download
Get the OpenAPI specification file from the link below and save it somewhere handy β you'll need it in the next step.
π AXSMarine_OpenAPI_Specification.json
Client Setup
Follow the steps below to set up your preferred API client. Each section walks you through importing the spec, configuring your environment, and sending your first request. Pick the client you use and follow its guide.
Postman :
Download if needed: postman.com/downloads
Step 1 β Import the spec
- Open Postman and click the three dots (...) in the top-left sidebar, then click Import.
- Choose File and select the downloaded
AXSMarine_OpenAPI_Specification.json, or paste the link directly. - When prompted, choose Postman Collection as the import type.
- Click Import. A new collection will appear in your sidebar with all endpoints organized into folders.
Step 2 β Create an environment
- Click the Environments tab on the lower-left sidebar, then click New Environment.
- Name it (e.g.
AXSMarine). - Add the following two variables:
Variable | Initial Value | Current Value |
|
|
|
|
|
|
Step 3 β Activate the environment
- In the top-right dropdown (shows "No Environment" by default), select your
AXSMarineenvironment. - Variables will now resolve automatically in all requests using the
{{variable}}syntax.
Step 4 β Make a request
- Expand the collection in the sidebar and pick any endpoint.
- Verify that the URL uses
{{host}}and the Authorization header uses{{authorization}}. - Click Send.
Insomnia :
Download if needed: insomnia.rest/download
Step 1 β Import the spec
- Open Insomnia and go to your workspace.
- Click the + button and select File.
- Select the
AXSMarine_OpenAPI_Specification.jsonfile (or paste the URL directly if you prefer to point to the download link), then click Scan and Import. - The collection will appear with all endpoints listed under a new document.
Step 2 β Set up the environment
- In your collection, click the environment dropdown in the top-left (defaults to Base Environment).
- Select OpenAPI env apihub.axsmarine.com β this is auto-generated from the spec and contains pre-configured values.
- Click the pencil icon next to the environment name to edit it.
- Add or update the following variables using the
{{ _.variable }}syntax:
{ "scheme": "https", "base_path": "", "host": "apihub.axsmarine.com", "authorization": "YOUR_TOKEN_HERE" }
- Click Close in the bottom-right to save.
Tip: Insomnia supports storing sensitive values like your API token as Secret variables (encrypted locally). In the environment editor, set the type of authorization to Secret to prevent it from being stored in plain text or accidentally synced.
Step 3 β Make a request
- Select any endpoint from the list on the left.
- Click Send.
Bruno :
Download if needed: usebruno.com/downloads
Bruno is a free, open-source API client that stores everything locally β no cloud sync, no account required.
Step 1 β Import the spec
- Open Bruno, click the three dots (...) in the top-left, and select Import Collection.
- Select Choose File(s) and select
AXSMarine_OpenAPI_Specification.json, or select URL and paste the link directly. - Select folder arrangement Tags (flat structure, all endpoints in one level) or Paths (folder tree structure, endpoints organized by URL path), then click Import.
- Choose a folder on your computer where Bruno will store the collection files.
Step 2 β Create an environment
- In the top-right of Bruno, click the environment dropdown (shows No Environment by default).
- Select Configure to open the environment manager.
- Select AXSMarine API Hub environment.
- Add the following variable using the + Add Variable button:
Name | Value |
|
|
- Click Save and Activate.
Step 3 β Make a request
- Expand the collection in the left sidebar and select any endpoint.
- Click the β Send button.
Quick Start Checklist
- Download the OpenAPI JSON file or copy the URL
- Open your API client and import the file
- Set up your environment with the required variables (
host+authorizationfor Postman/Insomnia,apiKeyfor Bruno) - Activate the environment
- Pick an endpoint and click Send
Full documentation: apidocs.axsmarine.com
On this page
- Export OpenAPI File