List Channels
curl --request GET \
--url https://app.uselamina.ai/v1/publishing/channels \
--header 'x-api-key: <api-key>'import requests
url = "https://app.uselamina.ai/v1/publishing/channels"
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://app.uselamina.ai/v1/publishing/channels', 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://app.uselamina.ai/v1/publishing/channels",
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://app.uselamina.ai/v1/publishing/channels"
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://app.uselamina.ai/v1/publishing/channels")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.uselamina.ai/v1/publishing/channels")
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{
"data": [
{
"id": "ch-001",
"platform": "facebook",
"accountName": "My Brand Page",
"accountType": "page",
"username": null,
"hasInstagram": true,
"createdAt": "2026-03-01T10:00:00.000Z"
},
{
"id": "ch-002",
"platform": "instagram",
"accountName": null,
"accountType": "business",
"username": "@mybrand",
"hasInstagram": false,
"createdAt": "2026-03-15T14:30:00.000Z"
}
]
}{
"error": "Invalid API key"
}"Too many requests from this IP, please try again in a minute"Distribute
List Channels
List social accounts connected to the workspace. These are the channels
you can publish content to via POST /v1/publishing/publish.
Each channel includes the platform, account name, username, and whether an Instagram business account is linked (for Facebook pages with Instagram).
Only valid (non-expired) connections are returned.
GET
/
v1
/
publishing
/
channels
List Channels
curl --request GET \
--url https://app.uselamina.ai/v1/publishing/channels \
--header 'x-api-key: <api-key>'import requests
url = "https://app.uselamina.ai/v1/publishing/channels"
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://app.uselamina.ai/v1/publishing/channels', 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://app.uselamina.ai/v1/publishing/channels",
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://app.uselamina.ai/v1/publishing/channels"
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://app.uselamina.ai/v1/publishing/channels")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.uselamina.ai/v1/publishing/channels")
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{
"data": [
{
"id": "ch-001",
"platform": "facebook",
"accountName": "My Brand Page",
"accountType": "page",
"username": null,
"hasInstagram": true,
"createdAt": "2026-03-01T10:00:00.000Z"
},
{
"id": "ch-002",
"platform": "instagram",
"accountName": null,
"accountType": "business",
"username": "@mybrand",
"hasInstagram": false,
"createdAt": "2026-03-15T14:30:00.000Z"
}
]
}{
"error": "Invalid API key"
}"Too many requests from this IP, please try again in a minute"Discover connected distribution destinations — Instagram, TikTok, YouTube, and other social accounts linked to your workspace.
Call this before
POST /v1/publishing/publish to get the accountIds you’ll need. Each channel shows the platform, username, and account type.