Inbox
Get inbox posts
Retrieve pending posts awaiting moderation (inbox). Each post includes the email of the member who submitted it in the uploadedBy field.
GET
/
v1
/
inbox
Get inbox posts
curl --request GET \
--url https://api.cevoid.com/v1/inbox \
--header 'x-api-key: <api-key>'import requests
url = "https://api.cevoid.com/v1/inbox"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.cevoid.com/v1/inbox', 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.cevoid.com/v1/inbox",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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.cevoid.com/v1/inbox"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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.cevoid.com/v1/inbox")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cevoid.com/v1/inbox")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"count": 123,
"next": "<string>",
"nodes": [
{
"id": "post_abc123def456",
"createdAt": "2024-01-15T10:30:00.000Z",
"media": {
"location": "https://cdn.cevoid.com/media/posts/abc123.jpg",
"hash": "LEHV6nWB2yk8pyo0adR*.7kCMdnj",
"filename": "summer-vacation-photo.jpg"
},
"taggedProducts": [
{
"x": 0.35,
"y": 0.65,
"product": {
"id": "prod_abc123",
"title": "Wireless Bluetooth Headphones",
"price": {
"price": 99.99,
"currency": "USD",
"salePrice": 79.99
},
"category": "Electronics > Audio > Headphones",
"media": {
"location": "https://cdn.cevoid.com/media/products/headphones-main.jpg",
"hash": "a1b2c3d4e5f6g7h8i9j0",
"filename": "wireless-headphones-product-image.jpg"
},
"handle": "wireless-bluetooth-headphones",
"url": "https://mystore.com/products/wireless-bluetooth-headphones",
"developmentUrl": "https://dev.mystore.com/products/wireless-bluetooth-headphones"
}
}
],
"origin": {
"type": "instagram"
},
"alt": "Woman wearing sunglasses standing next to a red convertible car on a sunny beach",
"videoCaptions": "Welcome to our summer collection! Check out these amazing sunglasses perfect for beach days.",
"videoDescription": "Video shows a woman modeling sunglasses while walking along a sandy beach with palm trees in the background",
"instagramUrl": "https://www.instagram.com/p/ABC123DEF456/",
"type": "IMAGE",
"fromInstagram": true,
"addedByCompany": false,
"instagramDate": "2024-01-10T14:22:00.000Z",
"comment": "Perfect day at the beach! ☀️ #SummerVibes #BeachLife #Sunglasses",
"hideCaption": false,
"uploadedBy": {
"username": "john_doe_photography",
"email": "sarah@example.com",
"image": {
"hash": "sha256:b2c3d4e5f6a7...",
"filename": "profile-pic.jpg",
"location": "https://cdn.cevoid.com/profiles/user123/avatar.jpg"
}
}
}
]
}"<string>""No valid API key provided""<string>""Something went wrong"Authorizations
Query Parameters
Max value for limit is 25
Required range:
1 <= x <= 25Example:
10
Number of items to skip
Required range:
x >= 0Example:
0
⌘I
Get inbox posts
curl --request GET \
--url https://api.cevoid.com/v1/inbox \
--header 'x-api-key: <api-key>'import requests
url = "https://api.cevoid.com/v1/inbox"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.cevoid.com/v1/inbox', 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.cevoid.com/v1/inbox",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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.cevoid.com/v1/inbox"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<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.cevoid.com/v1/inbox")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cevoid.com/v1/inbox")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"count": 123,
"next": "<string>",
"nodes": [
{
"id": "post_abc123def456",
"createdAt": "2024-01-15T10:30:00.000Z",
"media": {
"location": "https://cdn.cevoid.com/media/posts/abc123.jpg",
"hash": "LEHV6nWB2yk8pyo0adR*.7kCMdnj",
"filename": "summer-vacation-photo.jpg"
},
"taggedProducts": [
{
"x": 0.35,
"y": 0.65,
"product": {
"id": "prod_abc123",
"title": "Wireless Bluetooth Headphones",
"price": {
"price": 99.99,
"currency": "USD",
"salePrice": 79.99
},
"category": "Electronics > Audio > Headphones",
"media": {
"location": "https://cdn.cevoid.com/media/products/headphones-main.jpg",
"hash": "a1b2c3d4e5f6g7h8i9j0",
"filename": "wireless-headphones-product-image.jpg"
},
"handle": "wireless-bluetooth-headphones",
"url": "https://mystore.com/products/wireless-bluetooth-headphones",
"developmentUrl": "https://dev.mystore.com/products/wireless-bluetooth-headphones"
}
}
],
"origin": {
"type": "instagram"
},
"alt": "Woman wearing sunglasses standing next to a red convertible car on a sunny beach",
"videoCaptions": "Welcome to our summer collection! Check out these amazing sunglasses perfect for beach days.",
"videoDescription": "Video shows a woman modeling sunglasses while walking along a sandy beach with palm trees in the background",
"instagramUrl": "https://www.instagram.com/p/ABC123DEF456/",
"type": "IMAGE",
"fromInstagram": true,
"addedByCompany": false,
"instagramDate": "2024-01-10T14:22:00.000Z",
"comment": "Perfect day at the beach! ☀️ #SummerVibes #BeachLife #Sunglasses",
"hideCaption": false,
"uploadedBy": {
"username": "john_doe_photography",
"email": "sarah@example.com",
"image": {
"hash": "sha256:b2c3d4e5f6a7...",
"filename": "profile-pic.jpg",
"location": "https://cdn.cevoid.com/profiles/user123/avatar.jpg"
}
}
}
]
}"<string>""No valid API key provided""<string>""Something went wrong"