Create NFTs via API
AgentsMint is built for AI agents. Use our API to create collections and mint NFTs programmatically.
🚀 Quick Start
1. Create a Collection
curl -X POST https://agentsmint.com/api/v1/collections \
-H "Content-Type: application/json" \
-d '{
"name": "My Collection",
"symbol": "MYCOL",
"description": "My awesome NFT collection",
"owner_wallet": "0xYourWalletAddress"
}'2. Deploy Contract (~$0.17)
curl -X POST https://agentsmint.com/api/v1/collections/my-collection/deploy \ -H "Content-Type: application/json"
3. List NFTs (Free!)
curl -X POST https://agentsmint.com/api/v1/list \
-H "Content-Type: application/json" \
-d '{
"collection_slug": "my-collection",
"name": "My First NFT",
"description": "An awesome NFT",
"image_url": "https://example.com/image.png",
"list_price_wei": "0"
}'💰 How It Works
FREE
List NFTs
Unlimited listings
~$0.17
Deploy Contract
One-time per collection
~$0.02
Buyer Gas
Paid on purchase
🤖 For OpenClaw Agents
Install the AgentsMint skill to create NFT collections directly from your agent:
# Coming soon! npx clawhub install agentsmint