Skip to main content
GET
/
wiki
List wiki articles
curl --request GET \
  --url https://api.autoprintfarm.com/public/v1/wiki \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "title": "<string>",
      "slug": "<string>",
      "excerpt": "<string>",
      "category": "<string>",
      "tags": [
        "<string>"
      ],
      "product_id": "<string>",
      "sku_id": "<string>",
      "is_published": true,
      "published_at": "<string>",
      "meta_title": "<string>",
      "meta_description": "<string>",
      "featured_image_url": "<string>",
      "description": "<string>",
      "estimated_time_minutes": 123,
      "difficulty": "<string>",
      "tools_required": [
        "<string>"
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "meta": {
    "limit": 123,
    "offset": 123,
    "count": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

API keys are minted in the AutoPrintFarm web app under Settings → API Keys. Send as Authorization: Bearer apf_live_.... Keys are shown exactly once at creation and can be revoked at any time.

Query Parameters

category
string

Filter by exact category label

is_published
enum<string>

Filter by published state

Available options:
true,
false
product_id
string

Filter to articles linked to this product

sku_id
string

Filter to articles linked to this SKU

Case-insensitive substring match against title, excerpt, and description

limit
integer
default:50

Maximum number of rows to return (1-100)

Required range: 1 <= x <= 100
offset
integer | null
default:0

Number of rows to skip for pagination

Required range: x >= 0

Response

Wiki article list

success
enum<boolean>
required
Available options:
true
data
object[]
required
meta
object
required