curl --request GET \
--url https://omnimux.ai/api/social/v1/seats \
--header 'Authorization: Bearer <access_token>' \
--header 'New-Api-User: <user_id>' \
--header 'Content-Type: application/json'
{
"success": true,
"data": {
"billing_mode": "paid",
"used_seats": 2,
"total_seats": 5,
"vacant_seats": 3,
"price_per_seat_month": 5.0
}
}
{
"success": false,
"message": "Unauthorized"
}
{
"success": false,
"message": "Forbidden"
}
{
"success": false,
"message": "social ops is disabled"
}
curl --request GET \
--url https://omnimux.ai/api/social/v1/seats \
--header 'Authorization: Bearer <access_token>' \
--header 'New-Api-User: <user_id>' \
--header 'Content-Type: application/json'
{
"success": true,
"data": {
"billing_mode": "paid",
"used_seats": 2,
"total_seats": 5,
"vacant_seats": 3,
"price_per_seat_month": 5.0
}
}
{
"success": false,
"message": "Unauthorized"
}
{
"success": false,
"message": "Forbidden"
}
{
"success": false,
"message": "social ops is disabled"
}
Query Seats
Query social account seats quota and utilization status
curl --request GET \
--url https://omnimux.ai/api/social/v1/seats \
--header 'Authorization: Bearer <access_token>' \
--header 'New-Api-User: <user_id>' \
--header 'Content-Type: application/json'
{
"success": true,
"data": {
"billing_mode": "paid",
"used_seats": 2,
"total_seats": 5,
"vacant_seats": 3,
"price_per_seat_month": 5.0
}
}
{
"success": false,
"message": "Unauthorized"
}
{
"success": false,
"message": "Forbidden"
}
{
"success": false,
"message": "social ops is disabled"
}
GET
/
api
/
social
/
v1
/
seats
curl --request GET \
--url https://omnimux.ai/api/social/v1/seats \
--header 'Authorization: Bearer <access_token>' \
--header 'New-Api-User: <user_id>' \
--header 'Content-Type: application/json'
{
"success": true,
"data": {
"billing_mode": "paid",
"used_seats": 2,
"total_seats": 5,
"vacant_seats": 3,
"price_per_seat_month": 5.0
}
}
{
"success": false,
"message": "Unauthorized"
}
{
"success": false,
"message": "Forbidden"
}
{
"success": false,
"message": "social ops is disabled"
}
- Social publishing user API (not
sk-social-data read) - Base:
https://omnimux.ai; auth access token +New-Api-User - Queries current allocated social account seats, active bound accounts, and vacant slot availability
Identity
| Field | Value |
|---|---|
| Series | Publishing |
| Group | Connecting Accounts |
| Capability | Query seats |
Endpoint
| Method | Path |
|---|---|
GET | /api/social/v1/seats |
https://omnimux.ai
Authorizations
| Name | In | Type | Required | Description |
|---|---|---|---|---|
Authorization | header | string | yes | Bearer <access_token> (User Access Token) |
New-Api-User | header | string | yes | Current user id |
Query Parameters
None.Response
200
| Field | Type | Description |
|---|---|---|
success | boolean | Success flag |
data | object | Seat utilization details |
data.billing_mode | string | Current seat billing mode (off, free, paid) |
data.used_seats | integer | Number of active bound social accounts |
data.total_seats | integer | Total allocated seats capacity |
data.vacant_seats | integer | Available unbound slots |
data.price_per_seat_month | number | Price per additional seat per month |