Quickstart GuideGet started with Litends AI in 5 minutes
Follow this step-by-step guide to integrate AI capabilities into your application quickly and efficiently.
Steps
1
Create Your Account
Sign up for a Litends AI account and get your API credentials.
Pro Tips
- Choose a strong password with at least 8 characters
- Verify your email address to activate your account
- Keep your API keys secure and never commit them to public repositories
2
Get Your API Key
Navigate to your dashboard and generate your first API key.
bash
# Set your API key as an environment variable
export LITENDS_API_KEY="your_api_key_here"
# Or in your .env file
LITENDS_API_KEY=your_api_key_here
Pro Tips
- Store API keys in environment variables, not in your code
- Use different API keys for development and production
- Regenerate keys if you suspect they've been compromised
3
Install the SDK
Choose your preferred programming language and install our SDK.
bash
# Python
pip install litends-ai
# JavaScript/Node.js
npm install litends-ai
# Java
<dependency>
<groupId>com.litends</groupId>
<artifactId>litends-ai</artifactId>
<version>1.0.0</version>
</dependency>
Pro Tips
- Use virtual environments for Python projects
- Check our changelog for the latest SDK version
- Pin specific versions in production environments
4
Make Your First Request
Test your connection with a simple API call.
python
import litends
# Initialize the client
client = litends.Client(api_key="your_api_key_here")
# Make a prediction request
response = client.predict(
model="text-sentiment",
data={"text": "I love using Litends AI!"}
)
print(response.result)
# Output: {"sentiment": "positive", "confidence": 0.95}
Pro Tips
- Start with our pre-trained models before building custom ones
- Check the response status before processing results
- Use our sandbox environment for testing
5
Explore Advanced Features
Discover more powerful capabilities and integrations.
Pro Tips
- Check out our tutorials for specific use cases
- Join our community forum for support and best practices
- Review our API reference for detailed documentation
🎉 Congratulations! You're ready to build with Litends AI
Now that you've completed the quickstart guide, explore our advanced tutorials and comprehensive API documentation.