/get

Get a specified variable from your database

This endpoint requires a POST request!

Endpoint Headers:

  • apikey - Your Api Auth Key [String] (Required)

Endpoint Body Parameters:

  • name - Name of the variable to get [String] (Required)

Examples:

Data API version required. Must replace <version> with either release or beta.

Bot Designer for Discord

Example usage of /db/get endpoint using BDFD

$httpAddHeader[apikey;<YOUR-API-KEY>]
$httpPost[https://bdfddata.rickyjs.xyz/<version>/db/get;{
"name": "variable-name"
}]

$httpResult OR $httpResult[entries]
Discord.js

Example usage of /db/get endpoint using Discord.js

const axios = require('axios');
(async () => {
return await axios.post('https://bdfddata.rickyjs.xyz/<version>/db/get', {
name: 'variable-name'
}, 
{
headers: {
"apikey": "<YOUR-API-KEY>"
}
}).then(res=>res.data)
})()

Possible Responses (Codes)

Code 200

API succeeded and details were fetched.

{
 status: 200,
 entries: // returns the value of the specified variable
 }   
Code 400

An error occurred that stopped execution.

{
    status: 400
    error: 'Cannot read ...  (This can vary)'
}
Code 424

Origin Database Unavailable

  status: 424,
  error: 'An error occurred while contacting our Database. Please contact the BDFDDaya API Support Team if this issue persists.'
}

Last updated