← Back to Blog
April 5, 2026 10 min read MapJSON Team

JSON Best Practices for Modern APIs

The Foundation of API Design

In the world of microservices and mobile applications, JSON has become the universal language of data exchange. While the JSON specification itself is remarkably simple, designing a high-quality API requires careful consideration of naming conventions, structural patterns, and evolution strategies. A well-designed JSON API is intuitive, self-documenting, and efficient.

1. Stick to a Naming Convention

Consistency is the most important rule in API design. Choose a naming convention and stick to it across your entire platform. The most common choices are:

  • camelCase: The standard for JavaScript and most modern web frameworks (e.g., "userName").
  • snake_case: Common in Python, Ruby, and many legacy systems (e.g., "user_name").

While both are valid, camelCase is generally preferred for JSON because it matches the native JavaScript object property access.

2. Keep Nesting Under Control

While JSON supports infinite nesting, developers should aim for a relatively flat structure. Deeply nested objects make parsing more difficult for client applications and increase the complexity of the code. A good rule of thumb is to avoid nesting beyond 3-4 levels unless absolutely necessary for representing complex hierarchies.

3. Use ISO 8601 for Dates

JSON does not have a native "Date" type. To avoid confusion, always represent dates as strings in the ISO 8601 format (e.g., "2026-04-05T14:30:00Z"). This format is globally recognized, includes timezone information, and can be easily sorted as a string.

4. Pagination and Enveloping

When returning lists of resources, never return a raw array at the top level. Instead, wrap it in an object. This allows you to add metadata like total counts and pagination links without breaking the client-side logic later.

{
  "data": [...],
  "meta": {
    "totalCount": 150,
    "limit": 20,
    "offset": 0,
    "nextPage": "/api/users?offset=20"
  }
}

Conclusion

By following these best practices, you ensure that your API is a joy for other developers to integrate with. Consistency, simplicity, and adherence to industry standards like ISO 8601 will save countless hours of debugging and documentation.