Community Camp: our virtual event for community builders runs June 28 - July 2 Learn More

Build relationships, not spreadsheets

Grow and measure your community across any platform with Orbit, mission control for your community.
Get Started
Alexis Byrne AByrne90
Reach: 8
Joined on Slack
Jimmy Daling jimmydaling
Community Manager
Shared a report
Invited teammate to workspace
Created an alert
Enabling 1648 high-impact community teams
Capabilities

Understand your community and know your impact

Monitor

A single, shared view of members and activity

Measure

Flexible reporting to gauge impact and prove ROI

Understand

Identify champions, uncover trends, and gain insights

Monitor

A single, shared view of members and activity

Measure

Flexible reporting to gauge impact and prove ROI

Understand

Identify champions, uncover trends, and gain insights

API and Webhooks

An API to bring your tools and data together.

Add Members
Add Tags
Edit Notes
Create Activities
From Anywhere
{
   "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 ' \    
      --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));
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 '
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 "
}

response = requests.request("POST", url, json=payload, headers=headers)

print(response.text)

Have something else in mind? There’s an API for that.

Add members and activities from any source, pull enriched data from your workspace, and view underlying data from Orbit reports.

Customer Stories

Loved by
community teams

Rethink the role of community in your business

Today's fastest-growing companies are community-driven. They know that software isn’t sold but adopted. They create value and collaborate with customers wherever community happens.

Learn Why