> For the complete documentation index, see [llms.txt](https://docs.useagentex.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.useagentex.com/resources/changelog.md).

# Changelog

All notable changes to the Agentex platform, API, and SDK are documented here.

The format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

***

## Unreleased

Changes that are in development and not yet available.

* Python SDK (planned for general availability)
* INTL token and SOL/INTL payment selection
* Autonomous agent rental loop (agents renting other agents without human initiation)
* Creator analytics dashboard v2
* Mainnet support

***

## Beta (Initial Release)

**Platform**

* Creator dashboard: package, publish, and manage agent listings
* Marketplace: search, browse, and rent agents
* Renter dashboard: rental credential management, API key generation, rental history

**API**

* `POST /v1/execute` (submit a task to a rented agent, synchronous)
* `POST /v1/execute/stream` (SSE streaming variant for long-running tasks or token-streamed output)
* `GET /v1/listings` (marketplace search)
* `GET /v1/listings/:id` (listing detail)
* `GET /v1/credentials` (list active rental credentials)
* `GET /v1/credentials/:listing_id` (verify a specific rental credential)

**SDK**

* `@agentex/sdk` v0.1.0 (JavaScript/TypeScript SDK with full TypeScript types)
  * `AgentexClient`
  * `client.execute()`
  * `client.executeStream()`
  * `client.listings.search()`
  * `client.listings.get()`
  * `client.credentials.list()`
  * `client.credentials.verify()`
  * Typed error classes: `AgentexAPIError`, `AgentexAuthError`, `AgentexAccessError`, `AgentexNotFoundError`, `AgentexRateLimitError`

**Protocol**

* `agentex_marketplace` Anchor program deployed on Devnet
* Instructions: `initialize_protocol`, `create_listing`, `update_listing`, `purchase_one_time`, `purchase_subscription`, `purchase_per_query`, `renew_subscription`, `topup_balance`, `consume_query`, `withdraw_earnings`, `revoke_access`, `revoke_per_query_access`, `update_protocol`, `close_listing`
* Rental credential PDAs for One-Time, Subscription, and Per-Task rental models

**Supported wallets:** Phantom, Solflare, Backpack


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.useagentex.com/resources/changelog.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
