Developers
Notyced API Documentation
Build applications that connect tribal communities. Our RESTful API provides access to tribe feeds, profiles, settings, and more.
🔐 Authentication
All API endpoints require authentication. Include your API key in the Authorization header:
To get your API key, register your application in the developer dashboard.
📡 API Endpoints
/api/tribe/feedGet tribe feed posts and members
/api/tribe/feedCreate new post or toggle like
/api/tribe/profileGet profile data, posts, and achievements
/api/tribe/profileUpdate profile information
/api/tribe/settingsGet user settings
/api/tribe/settingsUpdate user settings
💻 Code Examples
Get Tribe Feed
fetch('/api/tribe/feed?type=posts')
.then(response => response.json())
.then(data => console.log(data.posts))Create Post
fetch('/api/tribe/feed', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
type: 'post',
data: {
content: 'Hello tribe!',
authorId: 'user123'
}
})
})📚 SDKs & Libraries
JavaScript
npm install notyced-js
Python
pip install notyced-python
React
npm install notyced-react
⚡ Rate Limits
• Free Tier: 1,000 requests per hour
• Pro Tier: 10,000 requests per hour
• Enterprise: Unlimited requests
Rate limit headers are included in all API responses.
🛠️ Developer Support
Need help integrating our API? Our developer team is here to assist you.