Major Documentation Update: Web Services APIs & NovaAI API DetailsΒΆ
We're excited to announce a major update to the Nova Suite documentation! This week, we've rolled out comprehensive documentation for our brand new Web Services APIs and updated the NovaAI API documentation with complete pricing and endpoint information.
π New Web Services APIsΒΆ
We've added four powerful, free API services for developers:
π PreBrowse - Advanced Link Safety CheckerΒΆ
PreBrowse goes beyond traditional URL safety checkers with live content analysis. It actually fetches and analyzes webpage content to detect:
- Phishing attempts and scam language
- Hidden forms and iframes
- Obfuscated JavaScript
- SSL certificate issues
- Brand impersonation
- And 20+ other threat vectors
Rate Limit: 20 requests/hour for deep scans, 100 requests/hour for URL-only analysis
π Rich Suggestions - Intelligent Search with WikipediaΒΆ
Get comprehensive search results by integrating Wikipedia data with intelligent query analysis:
- Real-time Wikipedia article search
- Rich metadata and thumbnails
- Smart related search suggestions
- Automatic topic categorization
- Confidence scoring
Rate Limit: 50 requests/hour
π Text Analyzer - Comprehensive Text AnalysisΒΆ
Analyze text for sentiment, readability, and more:
- Sentiment analysis (positive/negative/neutral)
- Readability scoring (Flesch, Flesch-Kincaid, ARI)
- Keyword extraction
- Text statistics and reading time
- Tone and formality analysis
Rate Limit: 50 requests/hour
π Data Encoder - Encoding & Hashing UtilitiesΒΆ
Comprehensive encoding, decoding, and hashing tools:
- Base64, URL, HTML entity encoding/decoding
- Hash generation (MD5, SHA1, SHA256, SHA512)
- UUID v4 generation
- Cryptographically secure random strings
Rate Limit: 100 requests/hour
π€ NovaAI API UpdatesΒΆ
We've completely overhauled the NovaAI API documentation with:
Updated Endpoint StructureΒΆ
The API now uses a simplified endpoint format:
With a streamlined request format:
Accurate PricingΒΆ
We've updated the pricing to reflect the actual costs:
| Model | Input (per 1M tokens) | Output (per 1M tokens) |
|---|---|---|
| ModelA 9-Nano | $1.00 | $5.00 |
| ModelA 9 | $1.50 | $7.50 |
Enhanced DocumentationΒΆ
- Complete API reference with examples in Python, JavaScript, and cURL
- Updated model specifications and context windows
- Comprehensive error handling guide
- Best practices and integration examples
π JavaScript SDKΒΆ
All Web Services APIs can be easily accessed through our JavaScript SDK:
<script src="https://apis.novasuite.one/nova-apis.js"></script>
<script>
const nova = new NovaAPIs();
// Check URL safety
const safety = await nova.prebrowse.check('https://example.com');
// Search with Wikipedia
const search = await nova.richSuggestions.search('artificial intelligence');
// Analyze text
const analysis = await nova.textAnalyzer.analyze('Your text here');
// Encode data
const encoded = await nova.dataEncoder.base64Encode('Hello World');
</script>
π What's Next?ΒΆ
We're continuously improving our documentation to make it easier for developers to build with Nova Suite. Coming soon:
- More code examples and tutorials
- Interactive API playground
- SDK libraries for Python, Go, and Ruby
- Video tutorials and guides
π― Get StartedΒΆ
Ready to start building? Check out our updated documentation:
Have questions or feedback? Reach out to us at api@novasuite.one or join our Discord community.
Happy coding! π
β The DevDocs Team