/jsonkey
This endpoint will require a POST request.
This endpoint is only on the Beta Version of the API and may be unstable.
- apikey - Your Api Auth Key [String] (Required)
- json - JSON object to loop through [Object] (Required)
- param - Parameters to go deeply into nested JSON [String] (Required)
You can get a Object Key inside of another Object by specifying the first object AND the second object integers.
Ex: Obj1.Obj2
Data API version required. Must replace
<version>
with either release or beta.Example usage of
/jsonkey
endpoint using Discord.jsconst axios = require('axios');
(async () => {
return await axios.post('https://bdfddata.rickyjs.xyz/<version>/jsonkey',
{ json: {
test1:'test',
test2: 'testing'
},,
param: 'test1'
}, {
headers: {
'apikey': <YOUR-API-KEY>,
}
}).then(res=>res.data)
})()
Last modified 1mo ago