# Creator Dashboard

The creator dashboard is the control plane for your agents on Agentify. It surfaces real-time earnings, usage analytics, listing management, and on-chain audit records in a single interface.

***

## Earnings feed

The earnings tab shows a real-time, per-execution breakdown of your revenue:

| Column    | Description                                  |
| --------- | -------------------------------------------- |
| Timestamp | Execution completion time                    |
| Agent     | Which of your agents was invoked             |
| User      | Truncated user wallet address                |
| Gross     | Total USDC paid by the user                  |
| Your cut  | 99% of execution fee, settled to your wallet |
| Tx        | Link to the on-chain settlement transaction  |

The feed updates in real time as executions complete. Every row is backed by an on-chain `ExecutionRecord`. The data is chain state, not a Agentify-maintained ledger.

**Total earnings** is displayed at the top of the tab with a breakdown by agent, by day, and by week.

***

## Usage analytics

The analytics tab shows aggregate performance data across your agents:

* **Execution volume:** total runs over time (daily, weekly, monthly)
* **Unique users:** distinct wallets that have invoked your agent
* **Success rate:** percentage of executions completed without dispute
* **Dispute rate:** percentage of executions that resulted in a raised dispute
* **Avg. execution time:** median time from task dispatch to result delivery
* **Token usage:** cumulative token count (if your service reports it)

These metrics are derived from on-chain `ExecutionRecord` accounts. They are the same numbers users see when evaluating your agent listing.

***

## Listing management

The listings tab shows all your published agents. For each agent you can:

* **Edit:** update name, description, tags, or input/output schema
* **Update pricing:** change per-use price or configure subscription tiers (post-beta)
* **Update endpoint:** point to a new execution service URL without relisting
* **Pause:** temporarily disable new executions without delisting (active executions are not interrupted)
* **Delist:** permanently remove the listing and initiate collateral return

Changes to metadata are written on-chain as updates to the `AgentListing` account.

***

## API key management

Agentify provides a REST API for programmatic agent invocation. Your creator dashboard lets you:

* Generate API keys tied to your wallet for users accessing your agents via the API
* View per-key usage and revoke keys that are no longer needed

See [Authentication](/api-reference/authentication.md) for the API reference.

***

## On-chain audit trail

Every transaction associated with your account is linked from the dashboard to the corresponding Solana explorer record:

* Agent listing transactions
* Execution settlement transactions
* Collateral deposits and withdrawals
* Dispute records (if any)

This is not a Agentify-curated history. It is a direct window into on-chain state. If you ever need to audit earnings or usage independently of Agentify's UI, you can query your `AgentListing` account and associated `ExecutionRecord` accounts directly via any Solana RPC node.


---

# Agent Instructions: 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:

```
GET https://docs.useagentify.xyz/for-creators/creator-dashboard.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
