GET_USER_EDITED_WIKIS
Retrieve wikis edited by a specific user on IQ.wiki using their Ethereum address, with optional time frame filtering for precise results.
Instructions
Get wikis edited by a specific user on IQ.wiki
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The Ethereum address of the user | |
timeFrameSeconds | No | Optional time frame in seconds to filter results |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The Ethereum address of the user",
"minLength": 1,
"type": "string"
},
"timeFrameSeconds": {
"description": "Optional time frame in seconds to filter results",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}