GET_USER_CREATED_WIKIS
Retrieve wikis created by a specific user on IQ.wiki using their Ethereum address, with an optional time frame filter.
Instructions
Get wikis created 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"
}