Skip to main content
GET
/
api
/
v1
/
brands
/
{brandId}
/
content
List Content
curl --request GET \
  --url https://api.example.com/api/v1/brands/{brandId}/content \
  --header 'Authorization: <authorization>'
import requests

url = "https://api.example.com/api/v1/brands/{brandId}/content"

headers = {"Authorization": "<authorization>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<authorization>'}};

fetch('https://api.example.com/api/v1/brands/{brandId}/content', 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.example.com/api/v1/brands/{brandId}/content",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);

$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.example.com/api/v1/brands/{brandId}/content"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "<authorization>")

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.example.com/api/v1/brands/{brandId}/content")
.header("Authorization", "<authorization>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/api/v1/brands/{brandId}/content")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'

response = http.request(request)
puts response.read_body
{
  "success": true,
  "pagination": {
    "total": 123,
    "count": 123,
    "limit": 123,
    "offset": 123
  },
  "articles": [
    {
      "id": "<string>",
      "title": "<string>",
      "slug": "<string>",
      "description": "<string>",
      "articleType": "<string>",
      "status": "<string>",
      "wordCount": 123,
      "finalUrl": "<string>",
      "publishedAt": "<string>",
      "generatedAt": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}
Content Studio articles are AI-generated, brand-aware pieces of content. This read-only endpoint lists articles so you can pull finished content into an external CMS (for example via an automation workflow). The list returns metadata only — fetch the article detail for the full markdown body.
Defaults to status=LIVE so you only get published-ready articles. Pass status explicitly to list drafts or archived items.
Authorization
string
required
Bearer token. Example: Bearer qw-api-xxx

Path Parameters

brandId
string
required
The unique identifier of the brand

Query Parameters

status
string
default:"LIVE"
Filter by status: DRAFT, GENERATING, LIVE, ARCHIVED
articleType
string
Filter by type: INFORMATIONAL, COMPARISON, HOW_TO, LISTICLE, REVIEW, CASE_STUDY, NEWS, OPINION, OTHER
limit
number
default:"50"
Maximum number of articles to return (max: 100)
offset
number
default:"0"
Pagination offset
sort
string
default:"updatedAt"
Field to sort by: createdAt, updatedAt, publishedAt, title, wordCount
order
string
default:"desc"
Sort order: asc or desc

Response

success
boolean
Indicates if the request was successful
pagination
object
articles
array

Example Request

curl -X GET "https://www.qwairy.co/api/v1/brands/cm1234567890abcdef/content?status=LIVE&limit=20" \
  -H "Authorization: Bearer qw-api-your-token-here"

Example Response

{
  "success": true,
  "pagination": {
    "total": 12,
    "count": 1,
    "limit": 20,
    "offset": 0
  },
  "articles": [
    {
      "id": "art_abc123",
      "title": "How to choose the right solution in 2026",
      "slug": "how-to-choose-the-right-solution-2026",
      "description": "A practical buyer's guide.",
      "articleType": "HOW_TO",
      "status": "LIVE",
      "wordCount": 1480,
      "finalUrl": "https://mybrand.com/blog/how-to-choose",
      "publishedAt": "2026-05-10T09:00:00.000Z",
      "generatedAt": "2026-05-08T14:22:00.000Z",
      "createdAt": "2026-05-08T13:50:00.000Z",
      "updatedAt": "2026-05-10T09:00:00.000Z"
    }
  ]
}