Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## v1.13.0-sdk.1

- Regenerated from the public API contract (555 to 559 operations). Adds the
**Chrome Web Store** platform (9 endpoints): item detail, search, related
items, reviews, category / collection / top-chart listings, search
suggestions, and the category reference taxonomy — covering Chrome Web Store
extensions and themes.


## v1.12.0-sdk.1

- Regenerated from the public API contract (532 to 555 operations). Adds the
**TrustMRR** platform (5 endpoints): a public database of verified startup
revenues and a startup-acquisition marketplace. The endpoints cover the
marketplace snapshot (recently listed startups and best deals), the verified
revenue leaderboard (rank by MRR, 30-day revenue, all-time revenue, growth,
traffic, or revenue per visitor), startup detail, the category directory, and
category detail.
- Also catches the client up with public endpoints from earlier API releases that
had not yet been regenerated into the SDKs: the ESPN and Reddit platforms; the
Airbnb Markets, GitHub Users, and Product Hunt dataset families; Product Hunt
category products; and the website tech-stack endpoint.

## v1.11.0-sdk.1

- Regenerated from the public API contract (529 to 532 operations). Adds three
Expand Down
61 changes: 44 additions & 17 deletions docs/operations.md

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions docs/recipes.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ Object listings = client.airbnb().hostListings(Map.of("id", "65056940", "page",
Object reviews = client.airbnb().hostReviews(Map.of("id", "65056940", "page", 1));
```

## TrustMRR Verified Startup Revenues

Browse verified startup revenues and the acquisition marketplace on TrustMRR: the marketplace snapshot, the revenue leaderboard, startup detail, and categories.

```java
Object deals = client.trustMrr().trustmrrMarketplace(Map.of());
Object board = client.trustMrr().trustmrrLeaderboard(Map.of("metric", "mrr"));
Object startup = client.trustMrr().trustmrrStartup(Map.of("slug", "stan"));
Object cats = client.trustMrr().trustmrrCategories(Map.of());
Object saas = client.trustMrr().trustmrrCategory(Map.of("slug", "saas"));
```

## Retries and Retry-After

```java
Expand Down
Loading
Loading