For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog inStart for free
  • Overview
    • Introduction
    • How it works
    • Quickstart
    • Customer showcase
  • Working with SDKs
    • Project structure
    • Adding custom code
    • Migrating to Replay
    • Capabilities
  • Generators
      • Generating an SDK
      • Publishing to Maven Central
      • Configuration
      • Adding custom code
      • Changelog
      • Customer showcase
  • Reference
    • generators.yml
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
Book a demoLog inStart for free
GeneratorsJava

Changelog

February 4, 2024
February 4, 2024
Was this page helpful?
Edit this page
Previous

February 11, 2024

Next

February 3, 2024

0.7.1

(feat): The SDK generator now supports idempotency headers. Users will be able to specify the idempotency headers in RequestOptions.

1Imdb imdb = Imdb.builder()
2 .apiKey("...")
3 .build();
4
5var response = imdb.ticket.purchase("theatre-id", IdempotentRequestOptions.builder()
6 .idempotencyKey("...")
7 .build());

(feat): The SDK generator now supports scanning API credentials via environment variables.

1Imdb imdb = Imdb.builder()
2 .apiKey("...") // defaults to System.getenv("IMDB_API_KEY")
3 .build();

(feat): The generated models now support boolean literals and users do not have to specify them in the builder. For example, for the following object

1Actor:
2 properties:
3 name: string
4 isMale: literal<true>

the user will not need to specify the literal properties when building the object.

1var actor = Actor.builder()
2 .name("Brad Pitt")
3 .build();