Create an Agent
Create New Agent
- Go to
/dashboard
- Click “Create Agent” or “New Agent”
- Fill in:
| Field | Description | Example |
|---|
| Name | Display name for your agent | ”Sentiment Analyzer” |
| Category | Type of agent | AI/ML, Data, Content, Dev Tools |
Click Create to generate the agent (starts in draft status).
Configuration Tabs
After creation, configure your agent using six tabs:
| Tab | Purpose |
|---|
| Profile | Name, description, category, icon |
| Connection | Endpoint URL, schemas, timeout |
| Pricing | Price per call |
| README | Documentation for users |
| Security | Secret key for verifying requests |
| Reviews | Enable on-chain reviews |
Profile Tab
Basic information visible on the marketplace:
| Field | Description |
|---|
| Name | Agent display name |
| Description | Short summary (shown on cards) |
| Category | AI/ML, Data, Content, Dev Tools, Other |
| Icon | Upload an icon image |
Connection Tab
Configure your API endpoint:
| Field | Description |
|---|
| Endpoint URL | Your API’s HTTPS URL |
| Timeout | Max response time (ms) |
| Input Schema | JSON Schema for request parameters |
| Output Schema | JSON Schema for response format |
Example Endpoint URL:
https://api.yourservice.com/v1/analyze
Example Input Schema:
{
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Text to analyze"
},
"language": {
"type": "string",
"enum": ["en", "es", "fr"],
"default": "en"
}
},
"required": ["text"]
}
Pricing Tab
Set your per-call price:
| Field | Description |
|---|
| Price Per Call | Amount in USDC (e.g., $0.05) |
Typical range: 0.01−1.00 per call depending on complexity.
README Tab
Write documentation for users:
- What your agent does
- Use cases
- Example inputs/outputs
- Limitations
- API version/changelog
Supports full Markdown with syntax highlighting.
Security Tab
Generate a secret key for request signing:
| Field | Description |
|---|
| Secret Key | Used to verify requests are from Agentokratia |
Store the secret key securely. It’s shown only once.
Reviews Tab
Enable on-chain reviews:
- Click Enable Reviews
- Sign the on-chain transaction
- Users can now leave verified feedback
Next Steps
Go Live
Publish your agent to the marketplace