Lead Generation Robot Schema At the bottom of the GPT settings page click in the Actions field. Now copy and paste the entire script shown below into the GPTs Instruction Schema field. { "openapi": "3.1.0", "info": { "title": "Page Fetcher", "version": "1.0.0" }, "servers": [{ "url": "https://virweb.com" }], "paths": { "/tm/fetch.php": { "get": { "operationId": "fetchUrl", "parameters": [ { "name": "url", "in": "query", "required": true, "schema": { "type": "string", "format": "uri" } } ], "responses": { "200": { "description": "Fetched HTML", "content": { "application/json": { "schema": { "type": "object", "properties": { "status": {"type":"integer"}, "content_type":{"type":"string"}, "html": {"type":"string"} }, "required": ["html"] } } } } } } } } }