MongoDB Bson Tutorial: What is BSON and How is It Different from JSON?

BSON (Binary JSON) is a binary-encoded serialization of JSON-like documents used in MongoDB databases. This article provides an overview of BSON, the binary data format used by MongoDB to store documents.

David Demir

David Demir

30 July 2025

MongoDB Bson Tutorial: What is BSON and How is It Different from JSON?

BSON (Binary JSON) is a binary-encoded serialization of JSON-like documents used in MongoDB databases. This article provides an overview of BSON, the binary data format used by MongoDB to store documents.

It explains what BSON is, how it extends JSON capabilities and key differences between BSON and JSON. In addition, it includes how Apidog handles this automatically. It also shows examples of basic CRUD operations and database commands using Apidog to interact with MongoDB.

button

What is Bson in MongoDB?

BSON (Binary JSON) is the primary data format used in MongoDB databases. Some key things to know about BSON in MongoDB:

Structure of a BSON Document

BSON (Binary JSON) is a binary-encoded serialization of JSON-like documents used in MongoDB databases. A BSON document contains ordered field-value pairs similar to JSON objects.

The fields can be any valid UTF-8 strings, while values can be one of several BSON data types like string, integer, double, binary data, array, document, boolean, date, null, etc. The structure of a BSON document starts with a 4-byte integer indicating the total document size.

Next is a field-value pair containing the "_id" field which uniquely identifies the document. The document content follows with each field-value pair encoded in a specific binary format based on the data type.

An example showing the structure of a BSON document:

// Sample BSON document
{
  _id: ObjectId("507f1f77bcf86cd799439011"), // 12-byte unique ID
  name: "John Doe", // String
  age: 35, // Integer
  address: { // Embedded document
    street: "123 Main St",
    city: "Anytown", 
    state: "CA"
  },
  hobbies: ["reading", "hiking","swimming"], // Array
  graduated: true, // Boolean
  birthday: ISODate("1980-05-15T00:00:00Z"), // Date
  data: BinData(0, "SGVsbG8gV29ybGQ="), // Binary data
  ts: Timestamp(1590583045633, 1) // Timestamp
}

Key things to note:

What is the difference between JSON and BSON?

Here are the main differences between JSON and BSON:

Conversion JSON and BSON in MongoDB with Apidog

Apidog is an API toolkit that simplifies API development. It offers MongoDB as one of its integrated database choices. By using MongoDB with Apidog, you can store API mocks and tests in MongoDB as the backend.

The mock API responses delivered by Apidog can be driven by data stored in a MongoDB database. This allows Apidog to leverage MongoDB as the persistent data source for mocked APIs. Next, we will explain the relation of JSON and BSON with you.

button

MongoDB stores data as BSON documents, which can be seen as a superset of JSON. When operating MongoDB database with Apidog, JSON is used to compose the content. Apidog will automatically map each field to the corresponding BSON data type based on the actual JSON content.

One special case is the _id field. According to MongoDB conventions, each document must have an _id field as the primary key, with ObjectId as the default data type instead of string.

With Apidog, to declare an _id field of ObjectId type, use the regular string format. If the string content conforms to the ObjectId format, Apidog will automatically map it to BSON's ObjectId type.

For example, in MongoDb there is a BSON document like:

Copy code
{
    _id: ObjectId('654e056de3662b1c09477cc3
'),
    name: "Apidog"
}

Then to query this document by _id with Apidog, the JSON to put in the "Query Condition" would be:

Copy code
{
    "_id": "654e056de3662b1c09477cc3"
}
MongoDB

Explore more

Code-First vs Design-First API Doc Workflows: Which is Better?

Code-First vs Design-First API Doc Workflows: Which is Better?

Learn the differences between code-first and design-first API documentation workflows. See how tools like Apidog support both approaches. Perfect for developers, architects and teams choosing the right API strategy.

25 November 2025

What API Docs Generator Comes With Auth?

What API Docs Generator Comes With Auth?

Looking for an API documentation generator that supports authentication? Learn how to set up tokens, enable debugging, and deliver professional API docs with real authentication examples.

24 November 2025

Google Antigravity vs Cursor 2.0: Which AI-Agent Editor Is Best for You?

Google Antigravity vs Cursor 2.0: Which AI-Agent Editor Is Best for You?

Explore a detailed comparison between Google Antigravity — Google’s agent-first IDE powered by Gemini 3 — and Cursor 2.0, the multi-agent VS Code fork featuring the fast Composer model and embedded browser. Which one is right for your AI-powered development workflow?

21 November 2025

Practice API Design-first in Apidog

Discover an easier way to build and use APIs