1
Account Setup
2
Application Info
3
Generate API Key
4
Complete

Create Your Developer Account

Let's get you started with Ujuzi Kilimo API

Already have an account? Sign In

Tell Us About Your Application

Help us understand how you'll use our API

Generate Your API Key

Choose your tier and generate your first API key

Free Tier

$0/month
  • 100 requests/hour
  • All API endpoints
  • Community support

Professional

RECOMMENDED
$49/month
  • 1000 requests/hour
  • Priority support
  • Advanced analytics
Note: You can upgrade or downgrade your tier at any time from your dashboard. All tiers come with a 14-day trial period.

Give your API key a descriptive name

You're All Set!

Your developer account and API key have been created successfully

Keep this key secure! It won't be shown again.

Next Steps

  • Read the API documentation
  • Generate your first access token
  • Make your first API call
  • Test in development mode

Quick Start Example

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);