Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / E Commerce / ShippingGuide API
ShippingGuide API logo

Bring ShippingGuide API

Agent-ready OpenAPI document · curated by JenticE CommerceShipping LogisticsapiKey1 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Get available Bring shipping services, prices, delivery times, and CO2 estimates for any Nordic sender-recipient pair. Useful for e-commerce checkouts and logistics quoting agents.

Use for: I need to quote shipping prices from Oslo to Stockholm for a 3 kg parcel, Get estimated delivery dates for all Bring services to a Norwegian postal code, Find all available Bring shipping options for a sender in Helsinki, Compare CO2 emissions across Bring services for a 10 kg shipment

Not supported: Does not handle label printing, pickup booking, or shipment tracking - use for shipping rate, ETA, and CO2 quoting only.

Jentic publishes the only available OpenAPI specification for ShippingGuide API, keeping it validated and agent-ready. Bring's ShippingGuide API returns the available shipping services for a given sender-recipient combination together with estimated delivery times, prices, environmental data, and human-readable service descriptions and logos for checkout display. It is designed to power Nordic e-commerce checkouts where Bring (Posten Norge / PostNord-adjacent) is the dominant carrier across Norway, Sweden, Denmark, and Finland. Available services are filtered by the customer numbers attached to the requesting account, so each merchant sees the contractual rates and products they are entitled to use.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the ShippingGuide API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the ShippingGuide API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fbring.com%2Fbring" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fbring.com%2Fbring" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with ShippingGuide API.

Calculate shipping prices for parcels and pallets between any pair of postal codes Bring serves

Return estimated delivery dates so a checkout can show 'arrives Tuesday' messaging to the buyer

Surface CO2 emission estimates per service so merchants can offer greener shipping options

Filter the response by the customer numbers on the account, so only contracted services appear

Return service logos and localised descriptions ready to render in a checkout selector

Use Cases

Patterns agents use ShippingGuide API for, with concrete tasks.

★ Nordic E-Commerce Checkout Rate Display

Norwegian and Swedish online stores call ShippingGuide at checkout to render a list of available Bring services with price, ETA, and a recognisable carrier logo for each option. Because the API filters by the merchant's customer numbers, the buyer only sees services the merchant is actually contracted for and at the negotiated rate. A typical integration is a single POST per checkout session and adds under 200 ms of latency.

POST /api/v2/products with sender postal code 0150 (Oslo) and recipient postal code 11122 (Stockholm) for a 3 kg parcel and return the cheapest service with its delivery date

Sustainability-Driven Shipping Selection

Brands with carbon-conscious customers use the CO2 estimates returned by ShippingGuide to surface a 'greenest option' badge in checkout. The agent compares emissions across services for the same lane and either auto-selects the lowest-impact option or shows the trade-off between price, speed, and emissions explicitly to the buyer.

POST /api/v2/products for a 5 kg shipment from Oslo to Bergen and return the service with the lowest CO2 emission value

Logistics Quoting for B2B Orders

B2B sellers shipping pallets across the Nordics use ShippingGuide to generate accurate price quotes for sales reps before an order is confirmed. The same endpoint that powers consumer checkout returns enterprise services such as Bring Cargo, so a single integration covers both retail and business shipping flows.

POST /api/v2/products with a pallet shipment of 200 kg from Trondheim to Copenhagen and return all cargo services with prices

AI Shipping Agent Through Jentic

An AI commerce agent uses Jentic to quote Bring shipping without holding the merchant's API key. The agent searches for 'quote a shipping rate', loads the ShippingGuide schema, and executes the call with the buyer's address. Combined with checkout and payment APIs through Jentic, the agent can complete an order end-to-end from natural-language input.

Use Jentic to search 'quote a Bring shipping rate', load the bring.com operation, and execute it for a 2 kg parcel from Oslo (0150) to Stockholm (11122)

Key Endpoints

1 endpoints — jentic publishes the only available openapi specification for shippingguide api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/api/v2/products

Get available Bring shipping services with prices, delivery times, and CO2 estimates

POST

/api/v2/products

Get available Bring shipping services with prices, delivery times, and CO2 estimates

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Bring ShippingGuide by hand means supplying your API key and customer numbers, building the products request body, and parsing rate, ETA, and CO2 fields out of the response yourself. Through Jentic you install once, import the ShippingGuide API from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

ShippingGuide exposes a single quoting operation that takes its shipment details in the request body, not as a resource id in the URL path, so scoping is operations-only: the agent is limited to the products quote operation and nothing else. You choose whether that one operation is allowed.

Credential management

Credential isolation

Your Bring API key and customer numbers are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'quote a shipping rate and delivery time', and Jentic returns the POST /api/v2/products operation with its parameter schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

ShipEngine

→

Multi-carrier shipping rates and label generation across global carriers

Choose ShipEngine when you need to compare Bring against UPS, FedEx, USPS, and dozens of other carriers in a single API

Complementary

FedEx

→

Global express shipping with rates, tracking, and labels

Use FedEx alongside Bring when shipments leave the Nordics and need international express service

Complementary

DHL Shipment Tracking

→

Track DHL shipments by tracking number with milestone events

Use DHL Tracking when a shipment hands off from Bring to DHL on the international leg and you still need end-to-end visibility

FAQs

Specific to using ShippingGuide API through Jentic.

Why is there no official OpenAPI spec for ShippingGuide API?

Bring does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call ShippingGuide API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the ShippingGuide API use?

Bring's ShippingGuide requires an API key tied to the user account, plus the customer numbers contracted with Bring passed in the request body. Through Jentic, the API key is stored encrypted in your Jentic One instance and the agent never handles the raw key.

Can I get CO2 emission estimates per shipping service?

Yes. The POST /api/v2/products response includes environmental data for each service so a checkout can display a CO2 figure alongside the price and ETA. This lets buyers choose between speed, cost, and sustainability.

Which countries does Bring ShippingGuide cover?

Coverage centres on the Nordic markets - Norway, Sweden, Denmark, and Finland - with cross-border services to the rest of Europe. The available services in any response are filtered by your merchant agreement and the sender-recipient postal codes you submit.

How do I quote a shipping rate through Jentic?

Search Jentic for 'quote a Bring shipping rate', load the bring.com ShippingGuide schema, and call POST /api/v2/products with sender, recipient, weight, and your customer number. Jentic supplies the API key automatically.

Are there rate limits on the ShippingGuide API?

Bring does not publish hard rate limits in the OpenAPI spec but applies fair-use throttling per account. For high-volume checkout traffic, cache responses by sender-recipient-weight tuple to reduce repeat calls and stay well under any throttling threshold.

Can I limit what my agent is allowed to do with the ShippingGuide API?

Yes. Because you run Jentic One yourself, your own rules decide which ShippingGuide operations and credentials the agent may use. The ShippingGuide API exposes a single quoting operation, POST /api/v2/products, which takes its shipment details in the request body rather than as an id in the URL, so scoping is operations-only: you choose whether the agent is allowed to call that one products quote operation at all. Your Bring API key and customer numbers stay with your instance and are injected only when you have permitted that call.

GET STARTED

Start building with ShippingGuide API

Explore with Jentic One
View OpenAPI Document