<< All versions
Skill v1.0.1
currentAutomated scan100/100markeljan/web3gpt/public
+19 new
──Details
PublishedSeptember 1, 2026 at 04:08 PM
Content Hashsha256:5d78755e49d39022...
Git SHA8d893d5d6948
Bump Typepatch
──Files
Files (1 file, 2.1 KB)
SKILL.md2.1 KBactive
SKILL.md · 82 lines · 2.1 KB
version: "1.0.1"
Web3GPT Skill
Use the Web3GPT skill endpoint to start a chat, continue a chat, and optionally return the full history.
Base endpoint:
https://w3gpt.ai/api/skill
Start a new chat
Call the endpoint with no parameters.
bash
curl https://w3gpt.ai/api/skill
Response:
json
{"agentId": "agent_web3gpt","chatId": "generated-chat-id","response": null}
Save the chatId. That is the secret for continuing the same thread.
Continue a chat
Send a message with the same chatId.
bash
curl -X POST "https://w3gpt.ai/api/skill?chatId=generated-chat-id" \-H "Content-Type: application/json" \-d '{"message":"Deploy an ERC20 on Polygon mainnet with 1,000,000 supply"}'
Response:
json
{"agentId": "agent_web3gpt","chatId": "generated-chat-id","response": "..."}
Full history
History is off by default.
history=truereturns the full simplified historyhistory=falseor omitting it returns only the latest responsefull=trueis supported as an alias forhistory=true
Example:
bash
curl "https://w3gpt.ai/api/skill?chatId=generated-chat-id&history=true"
Optional parameters
chatId: continue an existing chatagentId: use a different Web3GPT agentmessage: send a message by query string for small requestshistory: include the full history, defaults tofalsefull: alias forhistory
Notes
- If you call the endpoint without a
chatId, a new chat is created automatically. - If you call the endpoint without a
message, you still get back achatId. - Deployments happen through the agent conversation. Tell the agent which chain to use.
- Polygon mainnet deployment is available through the agent/skill endpoint, not the wallet UI connectors.
- Server-side deployment returns only after a successful contract-creation receipt. The tool result includes the chain ID, contract address, transaction hash, contract explorer URL, and transaction explorer URL.
- Public aggregate deployment and custom-agent counts are available at
https://w3gpt.ai/api/stats.