Build relationships, not spreadsheets.
Grow your community and prove ROI with Orbit®, the community experience platform that puts members first.
The single view of your community.
The operating system of
high gravity communities
Automated reports
Track and measure activity wherever your community happens.
Member profiles
Rich information, automatically generated for everyone.
Integrations? Of course.
GitHub, Twitter, Discourse, and more, or, use our API to build custom workflows.
Tags, filters, search
And other power tools for making your data usable.
Community Directory
Search and find people or groups across every channel you’ve integrated.
Content tracking
Save relevant tweets, blog posts, content from DEV, and more.
Webhooks
Receive notifications whenever a new activity occurs in your community.
{
"description": "Getting Started with the Orbit Model",
"link": "https://orbit-event.eventbrite.com/",
"link_text": "See the event",
"title": "Orbit Meetup Registration",
"activity_type": "eventbrite:registration",
"key": "eventbrite_attendee_id",
"occurred_at": "2020-05-10",
"member": {
"github": "user-github",
"email": "user@email.com"
}
}
curl --request POST \
--url https://app.orbit.love/api/v1/orbit/activities \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <orbit-api-key>' \
--header 'Content-Type: application/json' \
--data '{"activity":{"member":{"github":"user-github","email":"user@email"},"description":"Getting Started with the Orbit Model","link":"https://orbit-event.eventbrite.com/","link_text":"See the event","title":"Orbit Meetup Registration","activity_type":"eventbrite:registration","occurred_at":"2020-05-10"}}'
const fetch = require('node-fetch');
let url = 'https://app.orbit.love/api/v1/orbit/activities';
let options = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
'Authorization: 'Bearer <orbit-api-key>'
},
body: JSON.stringify({
activity: {
description: 'Getting Started with the Orbit Model',
link: 'https://orbit-event.eventbrite.com/',
link_text: 'See the event',
title: 'Orbit Meetup Registration',
activity_type: 'eventbrite:registration',
occurred_at: '2020-05-10',
member: {
github: 'user-github',
email: 'user@email.com'
}
}
})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error('error:' + err));
require 'uri'
require 'net/http'
url = URI("https://app.orbit.love/api/v1/orbit/activities")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Accept"] = 'application/json'
request["Content-Type"] = 'application/json'
request["Authorization"] = 'Bearer <orbit-api-key>'
request.body = {
activity: {
description: 'Getting Started with the Orbit Model',
link: 'https://orbit-event.eventbrite.com/',
link_text: 'See the event',
title: 'Orbit Meetup Registration',
activity_type: 'eventbrite:registration',
occurred_at: '2020-05-10',
member: {
github: 'user-github',
email: 'user@email.com'
}
}
}.to_json
response = http.request(request)
puts response.read_body
import requests
url = "https://app.orbit.love/api/v1/orbit/activities"
payload = {"activity": {
"member": {
"github": "user-github",
"email": "user@email"
},
"description": "Getting Started with the Orbit Model",
"link": "https://orbit-event.eventbrite.com/",
"link_text": "See the event",
"title": "Orbit Meetup Registration",
"activity_type": "eventbrite:registration",
"occurred_at": "2020-05-10"
}}
headers = {
"Accept": "application/json",
"Content-Type": "application/json",
"Authorization": "Bearer <orbit-api-key>"
}
response = requests.request("POST", url, json=payload, headers=headers)
print(response.text)
Have something else in mind?
There’s an API for that
Create members, add tags, edit notes, and save custom activities from anywhere. Read the docs ››
For DevRel and Community Teams
Coordinate your efforts, automate reporting, and prove ROI. Learn more.
For Open Source Maintainers
Attract and onboard more contributors. Learn more about our free plan for maintainers.
From the creators of the Orbit Model
Orbit’s unique approach is based on the Orbit Model, an open source alternative to the traditional sales and marketing funnel designed just for community. Learn more ››