Let's get you started with Ujuzi Kilimo API
Help us understand how you'll use our API
Choose your tier and generate your first API key
Your developer account and API key have been created successfully
Keep this key secure! It won't be shown again.
const response = await fetch('https://farmsuitedev.ujuzikilimo.com/api/v1/auth/generate-token', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
api_key: 'your_api_key_here',
device_name: 'My App'
})
});
const data = await response.json();
console.log(data.token);