Spaces Information
curl --request GET \
--url https://api.sorsa.io/v3/spaces \
--header 'ApiKey: <api-key>'import requests
url = "https://api.sorsa.io/v3/spaces"
headers = {"ApiKey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {ApiKey: '<api-key>'}};
fetch('https://api.sorsa.io/v3/spaces', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sorsa.io/v3/spaces",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"ApiKey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sorsa.io/v3/spaces"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("ApiKey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sorsa.io/v3/spaces")
.header("ApiKey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sorsa.io/v3/spaces")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["ApiKey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"created_at": 123,
"creator": {
"bio_urls": [
"<string>"
],
"can_dm": false,
"created_at": "2009-06-02T20:12:29Z",
"description": "Bio text",
"display_name": "Elon Musk",
"favourites_count": 1200,
"followers_count": 100000,
"followings_count": 500,
"id": "44196397",
"location": "Austin, TX",
"media_count": 300,
"pinned_tweet_ids": [
"<string>"
],
"possibly_sensitive": false,
"profile_background_image_url": "https://pbs.twimg.com/profile_banners/44196397/123",
"profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
"protected": false,
"tweets_count": 5000,
"username": "elonmusk",
"verified": true
},
"id": "<string>",
"is_subscribed": true,
"media_key": "<string>",
"participants": {
"admins": [
{
"avatar": "<string>",
"id": "<string>",
"is_muted_by_admin": true,
"is_muted_by_guest": true,
"is_verified": true,
"name": "<string>",
"periscope_user_id": "<string>",
"start": 123,
"username": "<string>"
}
],
"listeners": [
{
"avatar": "<string>",
"id": "<string>",
"is_muted_by_admin": true,
"is_muted_by_guest": true,
"is_verified": true,
"name": "<string>",
"periscope_user_id": "<string>",
"start": 123,
"username": "<string>"
}
],
"speakers": [
{
"avatar": "<string>",
"id": "<string>",
"is_muted_by_admin": true,
"is_muted_by_guest": true,
"is_verified": true,
"name": "<string>",
"periscope_user_id": "<string>",
"start": 123,
"username": "<string>"
}
],
"total": 123
},
"scheduled_start": 123,
"settings": {
"conversation_controls": 123,
"disallow_join": true,
"is_employee_only": true,
"is_locked": true,
"is_muted": true,
"is_space_available_for_clipping": true,
"is_space_available_for_replay": true,
"max_admin_capacity": 123,
"max_guest_sessions": 123,
"narrow_cast_space_type": 123,
"no_incognito": true
},
"state": "<string>",
"stats": {
"total_live_listeners": 123,
"total_participants": 123,
"total_replay_watched": 123
},
"title": "<string>",
"updated_at": 123
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Search
Spaces Information
Returns detailed information about a Twitter Space by its ID. Includes the Space’s metadata (title, current state, scheduled start time), full creator profile, and participant breakdown by role: admins, speakers, and listeners. Also exposes access settings such as lock status, join restrictions, and replay or clipping availability, along with live stats like total listeners and replay views.
GET
/
spaces
Spaces Information
curl --request GET \
--url https://api.sorsa.io/v3/spaces \
--header 'ApiKey: <api-key>'import requests
url = "https://api.sorsa.io/v3/spaces"
headers = {"ApiKey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {ApiKey: '<api-key>'}};
fetch('https://api.sorsa.io/v3/spaces', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sorsa.io/v3/spaces",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"ApiKey: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sorsa.io/v3/spaces"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("ApiKey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sorsa.io/v3/spaces")
.header("ApiKey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sorsa.io/v3/spaces")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["ApiKey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"created_at": 123,
"creator": {
"bio_urls": [
"<string>"
],
"can_dm": false,
"created_at": "2009-06-02T20:12:29Z",
"description": "Bio text",
"display_name": "Elon Musk",
"favourites_count": 1200,
"followers_count": 100000,
"followings_count": 500,
"id": "44196397",
"location": "Austin, TX",
"media_count": 300,
"pinned_tweet_ids": [
"<string>"
],
"possibly_sensitive": false,
"profile_background_image_url": "https://pbs.twimg.com/profile_banners/44196397/123",
"profile_image_url": "https://pbs.twimg.com/profile_images/123/photo.jpg",
"protected": false,
"tweets_count": 5000,
"username": "elonmusk",
"verified": true
},
"id": "<string>",
"is_subscribed": true,
"media_key": "<string>",
"participants": {
"admins": [
{
"avatar": "<string>",
"id": "<string>",
"is_muted_by_admin": true,
"is_muted_by_guest": true,
"is_verified": true,
"name": "<string>",
"periscope_user_id": "<string>",
"start": 123,
"username": "<string>"
}
],
"listeners": [
{
"avatar": "<string>",
"id": "<string>",
"is_muted_by_admin": true,
"is_muted_by_guest": true,
"is_verified": true,
"name": "<string>",
"periscope_user_id": "<string>",
"start": 123,
"username": "<string>"
}
],
"speakers": [
{
"avatar": "<string>",
"id": "<string>",
"is_muted_by_admin": true,
"is_muted_by_guest": true,
"is_verified": true,
"name": "<string>",
"periscope_user_id": "<string>",
"start": 123,
"username": "<string>"
}
],
"total": 123
},
"scheduled_start": 123,
"settings": {
"conversation_controls": 123,
"disallow_join": true,
"is_employee_only": true,
"is_locked": true,
"is_muted": true,
"is_space_available_for_clipping": true,
"is_space_available_for_replay": true,
"max_admin_capacity": 123,
"max_guest_sessions": 123,
"narrow_cast_space_type": 123,
"no_incognito": true
},
"state": "<string>",
"stats": {
"total_live_listeners": 123,
"total_participants": 123,
"total_replay_watched": 123
},
"title": "<string>",
"updated_at": 123
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Authorizations
Query Parameters
The unique identifier of the place (Space ID)
Full link to the place (Space link, e.g. https://twitter.com/i/spaces/1lPKqBajQrWGb)
Was this page helpful?
⌘I