MediaWiki API result
This is the HTML representation of the JSON format. HTML is good for debugging, but is unsuitable for application use.
Specify the format parameter to change the output format. To see the non-HTML representation of the JSON format, set format=json.
See the complete documentation, or the API help for more information.
{
"batchcomplete": "",
"continue": {
"lecontinue": "20250320210933|421",
"continue": "-||"
},
"query": {
"logevents": [
{
"logid": 431,
"ns": 8,
"title": "MediaWiki:PageForms-autocomplete-display",
"pageid": 0,
"logpage": 319,
"params": {},
"type": "delete",
"action": "delete",
"user": "Donxello",
"timestamp": "2025-04-13T18:39:09Z",
"comment": "content was: \"RecordingSinger=displaytitle\", and the only contributor was \"[[Special:Contributions/Donxello|Donxello]]\" ([[User talk:Donxello|talk]])"
},
{
"logid": 430,
"ns": 8,
"title": "MediaWiki:PageForms-autocomplete-display",
"pageid": 0,
"logpage": 319,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-04-13T18:35:18Z",
"comment": "Created page with \"RecordingSinger=displaytitle\""
},
{
"logid": 429,
"ns": 0,
"title": "RC10001551007890",
"pageid": 318,
"logpage": 318,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-04-13T17:05:27Z",
"comment": "Created page with \"{{Recording |RelatedTuneID=TVM30000945773168 |Singer=IND30794877 |RecDateStatus=unknown }}\""
},
{
"logid": 428,
"ns": 0,
"title": "IND30794877",
"pageid": 317,
"logpage": 317,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-04-13T17:02:14Z",
"comment": "Created page with \"{{Person |NameFirst=Don |NameLast=Xello |NameNick=Don Xello |NameCivil=Christian Xell |NameAlt=Xello |Role=Dancer, Entrepreneur |Country=Austria |DateBirth=1968/04/09 }}\""
},
{
"logid": 427,
"ns": 0,
"title": "TVM30002053543232",
"pageid": 316,
"logpage": 316,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-04-06T15:27:13Z",
"comment": "Created page with \"{{Tune |Featured=No |Title=testtune |TitleAlt=test |Description=asfasfd |Genre=Tango |CompositionYear=1938 |Composer=hujs l |Lyricist=asdjfl lasdf }}\""
},
{
"logid": 426,
"ns": 0,
"title": "Testpage-april2025",
"pageid": 315,
"logpage": 315,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-04-06T13:13:50Z",
"comment": "Created page with \"{{#get_web_data: url=https://www.wikidata.org/w/api.php?action=wbgetentities&ids=Q629788&format=json; format=json; data=birthday=entities.Q629788.claims.P569.0.mainsnak.datavalue.value.time, deathday=entities.Q629788.claims.P570.0.mainsnak.datavalue.value.time }} '''Raw birthday:''' {{#external_value:birthday}} '''Formatted birthday:''' {{#time:j F Y|{{#replace:{{#external_value:birthday}}|+|}}}}\""
},
{
"logid": 425,
"ns": 828,
"title": "Module:SPARQL",
"pageid": 314,
"logpage": 314,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-03-21T21:08:25Z",
"comment": "Created page with \"local p = {} local http = require('mw.http') local json = require('mw.text').jsonDecode function p.runQuery(query) local endpoint = \"https://dbpedia.org/sparql\" -- Change if using a different SPARQL service local url = endpoint .. \"?query=\" .. mw.uri.encode(query) local response = http.request{ method = \"GET\", url = url, headers = { [\"Accept\"] = \"application/json\" } } if response.status ~= 200 then return \"SPARQ...\""
},
{
"logid": 424,
"ns": 828,
"title": "Module:MySPARQL",
"pageid": 313,
"logpage": 313,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-03-21T12:30:23Z",
"comment": "Created page with \"local sparql = require('SPARQL') -- Load the SPARQL binding local p = {} function p.showFirstValue(frame) local sparqlQuery = frame.args[1] local queryResults = sparql.runQuery(sparqlQuery) -- Use the runQuery method local firstColName = queryResults['head']['vars'][0] return queryResults['results']['bindings'][0][firstColName]['value'] end return p\""
},
{
"logid": 423,
"ns": 828,
"title": "Module:WikidataSPARQL",
"pageid": 0,
"logpage": 312,
"params": {},
"type": "delete",
"action": "delete",
"user": "Donxello",
"timestamp": "2025-03-21T12:26:19Z",
"comment": "content was: \"local p = {} local endpoint = mw.loadData(\"Module:WikidataSPARQLConfig\").endpoint or \"https://query.wikidata.org/sparql\" function p.query(query) local url = endpoint .. \"?query=\" .. mw.uri.encode(query, \"WIKI\") local response = mw.ext.data.getJSON(url) return response end return p\", and the only contributor was \"[[Special:Contributions/Donxello|Donxello]]\" ([[User talk:Donxello|talk]])"
},
{
"logid": 422,
"ns": 828,
"title": "Module:WikidataSPARQL",
"pageid": 0,
"logpage": 312,
"params": {},
"type": "create",
"action": "create",
"user": "Donxello",
"timestamp": "2025-03-21T00:04:37Z",
"comment": "Created page with \"local p = {} local json = mw.ext.json -- Ensure JSON handling is available function p.getBirthDate(frame) local entityId = frame.args[1] or \"Q42\" -- Default to Q42 if no ID is provided local query = \"SELECT ?birthDate WHERE { wd:\" .. entityId .. \" wdt:P569 ?birthDate. }\" local url = \"https://query.wikidata.org/sparql?query=\" .. mw.uri.encode(query) .. \"&format=json\" local response = mw.internet.http.request(url) if not response then...\""
}
]
}
}