Skip to main content
GET
/
v4
/
accounts
/
{accountId}
/
drafts
List drafts
curl --request GET \
  --url 'https://api.conductor.com/v4/accounts/{accountId}/drafts?apiKey=&sig='
import requests

url = "https://api.conductor.com/v4/accounts/{accountId}/drafts?apiKey=&sig="

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.conductor.com/v4/accounts/{accountId}/drafts?apiKey=&sig=', 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.conductor.com/v4/accounts/{accountId}/drafts?apiKey=&sig=",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$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.conductor.com/v4/accounts/{accountId}/drafts?apiKey=&sig="

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

	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.conductor.com/v4/accounts/{accountId}/drafts?apiKey=&sig=")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.conductor.com/v4/accounts/{accountId}/drafts?apiKey=&sig=")

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

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "accountId": 123,
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "draftTitle": "<string>",
      "phrases": [
        "<string>"
      ],
      "page": "<string>",
      "rankSourceId": 123,
      "webPropertyId": 123,
      "versionId": "<string>",
      "created": "2026-06-28T23:19:03.026-04:00",
      "createdBy": 123,
      "updated": "2026-06-28T23:19:03.026-04:00",
      "updatedBy": 123,
      "assignee": 123,
      "competitorUrls": [
        "<string>"
      ],
      "contentProfileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "pagination": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "hasMore": true
  }
}
{
  "code": "<string>",
  "message": "<string>"
}
{
  "timestamp": "2023-11-07T05:31:56Z",
  "status": 123,
  "error": "<string>",
  "message": "<string>",
  "path": "<string>"
}

Authorizations

apiKey
string
query
required

API Key as a query parameter

sig
string
query
required

Request signature computed using API key and secret. Valid for 5 minutes after creation.

Path Parameters

accountId
integer
required

Account identifier

Query Parameters

limit
integer
default:20

Maximum number of drafts to return.

offset
integer
default:0

Number of drafts to skip before returning results.

status
enum<string>

Filter drafts by status.

Available options:
TO_DO,
IN_PROGRESS,
IN_REVIEW,
APPROVED,
PUBLISHED

Response

Paginated list of drafts

data
object[]

The page of drafts matching the request.

pagination
object