Two ways to integrate with Pobo. The REST API imports products and categories in bulk. The White Label API embeds the Pobo editor into your own application — it authenticates differently, see the note in its group.
To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
You can retrieve your token by visiting your dashboard and clicking Generate API token.
The White Label endpoints do not use this token. They authenticate with a pobo-white-label-token header plus an Origin header of one of your allowed domains — a request without an allowed origin is rejected with 403. Both headers are listed on every endpoint of that group.
Get paginated list of products with content in all active languages.
Only returns products in ready status with is_delete=false (includes both visible
and hidden products). Draft, review and generate products are excluded.
Language variants are returned only if is_active=true.
By default, only content.html is returned. Use the include parameter to request
additional content: marketplace (marketplace HTML), nested (raw widget JSON),
site_link (anchor navigation on H2 headings), rich_snippet (JSON-LD structured data),
variant (product variants with code and EAN).
When site_link is included, response contains site_link.html (rendered nav HTML per language)
and site_link.list (structured array of heading + slug per language).
Requires enable_site_link to be enabled on the eshop.
When rich_snippet is included, response contains rich_snippet.html (JSON-LD script tags per language)
and rich_snippet.json (parsed JSON-LD object per language).
Requires enable_rich_snippet to be enabled on the eshop.
When variant is included, response contains variant — a list of the product's variants
(code, ean) ordered by internal ID. Variants are language-independent. Products
without variants return an empty array.
The page number. Default: 1.
Items per page. Maximum: 100, Default: 100.
Filter by edited status (is_loaded). Default: true.
Filter products updated after this datetime. Format: Y-m-d H:i:s.
Comma-separated list of additional content to include: nested, marketplace, site_link, rich_snippet, variant.
Comma-separated list of languages to include: default, cs, sk, en, de, pl, hu, all. Without this parameter only "default" is returned.
curl --request GET \
--get "https://api.pobo.space/api/v2/rest/products?page=1&per_page=50&is_edited=1&last_update_time_from=2024-01-01+14%3A30%3A00&include=marketplace%2Cnested%2Csite_link%2Crich_snippet%2Cvariant&lang=default%2Ccs%2Csk" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"id": "PROD-001",
"guid": "550e8400-e29b-41d4-a716-446655440000",
"is_visible": true,
"is_loaded": false,
"image_preview": "https://example.com/preview.jpg",
"name": {
"default": "Product Name",
"sk": "Názov produktu"
},
"short_description": {
"default": "Short description",
"sk": "Krátky popis"
},
"description": {
"default": "<p>Full description</p>",
"sk": "<p>Plný popis</p>"
},
"url": {
"default": "https://example.com/product",
"sk": "https://example.com/sk/produkt"
},
"seo_title": {
"default": "SEO Title",
"sk": "SEO Názov"
},
"seo_description": {
"default": "SEO Description",
"sk": "SEO Popis"
},
"content": {
"html": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "..."
},
"marketplace": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "..."
},
"nested": [
[
{
"id": 2,
"class": "empty",
"tag": "div",
"children": []
}
]
]
},
"site_link": {
"html": {
"default": "<div id=\"pobo-site-link\" class=\"pobo-site-link__container\"><nav class=\"pobo-site-link__nav\"><a href=\"#nadpis\" class=\"pobo-site-link__anchor\">Nadpis</a></nav></div>"
},
"list": {
"default": [
{
"heading": "Nadpis",
"slug": "nadpis"
}
]
}
},
"rich_snippet": {
"html": {
"default": "<script type=\"application/ld+json\">{...}</script>"
},
"json": {
"default": {
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": []
}
}
},
"variant": [
{
"code": "ABC-001",
"ean": "8591234567890"
},
{
"code": "ABC-002",
"ean": null
}
],
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-01-16T14:20:00.000000Z"
}
],
"meta": {
"current_page": 1,
"per_page": 100,
"total": 150
}
}
Import or update multiple products at once with multilingual content. Maximum 100 products per request. Invalid products will be skipped and reported in the errors array.
Supported languages: default, cs, sk, en, de, pl, hu
Validation rules:
curl --request POST \
"https://api.pobo.space/api/v2/rest/products" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"*\": {
\"id\": \"PROD-123-ABC\",
\"is_visible\": true,
\"images\": [
\"https:\\/\\/example.com\\/img1.jpg\",
\"https:\\/\\/example.com\\/img2.jpg\"
],
\"categories_ids\": [
\"CAT-001\",
\"CAT-002\"
],
\"brand_id\": \"BRAND-001\",
\"parameters_ids\": [
1,
2,
3
],
\"name\": {
\"default\": \"Product Name\",
\"sk\": \"Názov produktu\",
\"*\": \"Názov produktu\"
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/product\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/produkt\",
\"*\": \"https:\\/\\/example.com\\/sk\\/produkt\"
},
\"short_description\": {
\"default\": \"Short desc\",
\"sk\": \"Krátky popis\",
\"*\": \"dolore\"
},
\"description\": {
\"default\": \"<p>Full description<\\/p>\",
\"sk\": \"<p>Plný popis<\\/p>\",
\"*\": \"aliquam\"
},
\"seo_title\": {
\"default\": \"SEO Title\",
\"sk\": \"SEO Názov\",
\"*\": \"enim\"
},
\"seo_description\": {
\"default\": \"SEO Description\",
\"sk\": \"SEO Popis\",
\"*\": \"vero\"
}
}
}"
{
"success": true,
"imported": 2,
"updated": 1,
"skipped": 1,
"errors": [
{
"index": 3,
"id": "PROD-004",
"errors": [
"The name.sk field is required when using language sk."
]
}
]
}
Soft-delete multiple products at once by setting is_delete = true. Maximum 100 products per request. Products that don't exist or are already deleted will be skipped.
curl --request DELETE \
"https://api.pobo.space/api/v2/rest/products" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
{
"success": true,
"deleted": 2,
"skipped": 1,
"errors": [
{
"index": 2,
"id": "PROD-999",
"errors": [
"Product not found"
]
}
]
}
Get paginated list of categories with content in all active languages.
Only returns categories in ready status with is_delete=false (includes both visible
and hidden categories). Draft, review and generate categories are excluded.
Language variants are returned only if is_active=true.
By default, only content.html is returned. Use the include parameter to request
additional content: marketplace (marketplace HTML), nested (raw widget JSON),
rich_snippet (JSON-LD structured data).
When rich_snippet is included, response contains rich_snippet.html (JSON-LD script tags per language)
and rich_snippet.json (parsed JSON-LD object per language).
Requires enable_rich_snippet to be enabled on the eshop.
Note: site_link is not available for categories.
The page number. Default: 1.
Items per page. Maximum: 100, Default: 100.
Filter by edited status (is_loaded). Default: true.
Filter categories updated after this datetime. Format: Y-m-d H:i:s.
Comma-separated list of additional content to include: nested, marketplace, rich_snippet.
Comma-separated list of languages to include: default, cs, sk, en, de, pl, hu, all. Without this parameter only "default" is returned.
curl --request GET \
--get "https://api.pobo.space/api/v2/rest/categories?page=1&per_page=50&is_edited=1&last_update_time_from=2024-01-01+14%3A30%3A00&include=marketplace%2Cnested%2Crich_snippet&lang=default%2Ccs%2Csk" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"id": "CAT-001",
"guid": "550e8400-e29b-41d4-a716-446655440000",
"is_visible": true,
"is_loaded": false,
"name": {
"default": "Electronics",
"sk": "Elektronika"
},
"description": {
"default": "<p>Electronics category</p>",
"sk": "<p>Kategoria elektroniky</p>"
},
"url": {
"default": "https://example.com/electronics",
"sk": "https://example.com/sk/elektronika"
},
"seo_title": {
"default": "Electronics | Shop",
"sk": "Elektronika | Obchod"
},
"seo_description": {
"default": "Best electronics",
"sk": "Najlepsia elektronika"
},
"content": {
"html": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "..."
},
"marketplace": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "..."
},
"nested": [
[
{
"id": 2,
"class": "empty",
"tag": "div",
"children": []
}
]
]
},
"rich_snippet": {
"html": {
"default": "<script type=\"application/ld+json\">{...}</script>"
},
"json": {
"default": {
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": []
}
}
},
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-01-16T14:20:00.000000Z"
}
],
"meta": {
"current_page": 1,
"per_page": 100,
"total": 50
}
}
Import or update multiple categories at once with multilingual content. Maximum 100 categories per request. Invalid categories will be skipped and reported in the errors array.
Supported languages: default, cs, sk, en, de, pl, hu
Validation rules:
curl --request POST \
"https://api.pobo.space/api/v2/rest/categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"*\": {
\"id\": \"A01.01.07\",
\"is_visible\": true,
\"images\": [
\"https:\\/\\/example.com\\/img1.jpg\"
],
\"name\": {
\"default\": \"Electronics\",
\"sk\": \"Elektronika\",
\"*\": \"Elektronika\"
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/electronics\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/elektronika\",
\"*\": \"https:\\/\\/example.com\\/sk\\/elektronika\"
},
\"description\": {
\"default\": \"<p>Description<\\/p>\",
\"sk\": \"<p>Popis<\\/p>\",
\"*\": \"sit\"
},
\"seo_title\": {
\"default\": \"SEO Title\",
\"sk\": \"SEO Názov\",
\"*\": \"reprehenderit\"
},
\"seo_description\": {
\"default\": \"SEO Description\",
\"sk\": \"SEO Popis\",
\"*\": \"voluptatem\"
}
}
}"
{
"success": true,
"imported": 2,
"updated": 1,
"skipped": 1,
"errors": [
{
"index": 3,
"id": "CAT-004",
"errors": [
"The name.sk field is required when using language sk."
]
}
]
}
Soft-delete multiple categories at once by setting is_delete = true. Maximum 100 categories per request. Categories that don't exist or are already deleted will be skipped.
curl --request DELETE \
"https://api.pobo.space/api/v2/rest/categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
{
"success": true,
"deleted": 2,
"skipped": 1,
"errors": [
{
"index": 2,
"id": "CAT-999",
"errors": [
"Category not found"
]
}
]
}
Import or update multiple parameters with their values at once. Maximum 100 parameters per request. Invalid parameters will be skipped and reported in the errors array.
Note: Parameters do not have multilang support - same structure as V1.
curl --request POST \
"https://api.pobo.space/api/v2/rest/parameters" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"*\": {
\"id\": 1,
\"name\": \"Color\",
\"values\": [
{
\"id\": 1,
\"value\": \"Red\"
},
{
\"id\": 2,
\"value\": \"Blue\"
}
]
}
}"
{
"success": true,
"imported": 2,
"updated": 1,
"skipped": 0,
"values_imported": 5,
"values_updated": 2,
"errors": []
}
Get paginated list of brands with content in selected languages.
Only returns brands with is_delete=false (includes both visible and hidden brands).
The id field in response is the external identifier (mapped to brand.remote_id).
By default only content.html is returned. Use the include parameter to request
additional content: marketplace, nested, site_link, rich_snippet.
The page number. Default: 1.
Items per page. Maximum: 100, Default: 100.
Filter by edited status (is_loaded). Default: true.
Filter brands updated after this datetime. Format: Y-m-d H:i:s.
Comma-separated list of additional content to include: nested, marketplace, site_link, rich_snippet.
Comma-separated list of languages to include: default, cs, sk, en, de, pl, hu, all. Without this parameter only "default" is returned.
curl --request GET \
--get "https://api.pobo.space/api/v2/rest/brands?page=1&per_page=50&is_edited=1&last_update_time_from=2024-01-01+14%3A30%3A00&include=marketplace%2Cnested%2Csite_link%2Crich_snippet&lang=default%2Ccs%2Csk" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"id": "BRAND-001",
"guid": "550e8400-e29b-41d4-a716-446655440099",
"is_visible": true,
"is_loaded": false,
"image_preview": "https://example.com/brands/apple-logo.png",
"name": {
"default": "Apple",
"cs": "Apple",
"sk": "Apple SK",
"en": "Apple EN",
"de": "Apple DE",
"pl": "Apple PL",
"hu": "Apple HU"
},
"description": {
"default": "<p>Brand description</p>",
"cs": "<p>Popis značky</p>",
"sk": "<p>Popis značky SK</p>",
"en": "<p>Brand description EN</p>",
"de": "<p>Markenbeschreibung</p>",
"pl": "<p>Opis marki</p>",
"hu": "<p>Márkaleírás</p>"
},
"url": {
"default": "https://example.com/znacky/apple",
"cs": "https://example.com/cs/znacky/apple",
"sk": "https://example.com/sk/znacky/apple",
"en": "https://example.com/en/brands/apple",
"de": "https://example.com/de/marken/apple",
"pl": "https://example.com/pl/marki/apple",
"hu": "https://example.com/hu/markak/apple"
},
"seo_title": {
"default": "Apple | Eshop",
"cs": "Apple | E-shop",
"sk": "Apple | Obchod",
"en": "Apple | Shop",
"de": "Apple | Shop",
"pl": "Apple | Sklep",
"hu": "Apple | Bolt"
},
"seo_description": {
"default": "SEO description",
"cs": "SEO popis",
"sk": "SEO popis SK",
"en": "SEO description EN",
"de": "SEO Beschreibung",
"pl": "Opis SEO",
"hu": "SEO leírás"
},
"content": {
"html": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "<div class=\"pobo-content\">...</div>",
"sk": "<div class=\"pobo-content\">...</div>",
"en": "<div class=\"pobo-content\">...</div>",
"de": "<div class=\"pobo-content\">...</div>",
"pl": "<div class=\"pobo-content\">...</div>",
"hu": "<div class=\"pobo-content\">...</div>"
},
"marketplace": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "<div class=\"pobo-content\">...</div>"
},
"nested": [
[
{
"id": 2,
"class": "empty",
"tag": "div",
"children": []
}
]
]
},
"site_link": {
"html": {
"default": "<div id=\"pobo-site-link\" class=\"pobo-site-link__container\"><nav class=\"pobo-site-link__nav\"><a href=\"#nadpis\" class=\"pobo-site-link__anchor\">Nadpis</a></nav></div>"
},
"list": {
"default": [
{
"heading": "Nadpis",
"slug": "nadpis"
}
]
}
},
"rich_snippet": {
"html": {
"default": "<script type=\"application/ld+json\">{...}</script>"
},
"json": {
"default": {
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": []
}
}
},
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-01-16T14:20:00.000000Z"
}
],
"meta": {
"current_page": 1,
"per_page": 100,
"total": 12
}
}
Import or update multiple brands at once with multilingual content.
The string id field is mapped to brand.remote_id in the database.
Maximum 100 brands per request. Invalid brands are skipped and reported in errors.
Supported languages: default, cs, sk, en, de, pl, hu
Validation rules:
curl --request POST \
"https://api.pobo.space/api/v2/rest/brands" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"*\": {
\"id\": \"BRAND-001\",
\"is_visible\": true,
\"image_preview\": \"https:\\/\\/example.com\\/brands\\/apple-logo.png\",
\"name\": {
\"default\": \"Apple\",
\"cs\": \"Apple\",
\"sk\": \"Apple SK\",
\"en\": \"Apple EN\",
\"de\": \"Apple DE\",
\"pl\": \"Apple PL\",
\"hu\": \"Apple HU\",
\"*\": \"Apple SK\"
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/znacky\\/apple\",
\"cs\": \"https:\\/\\/example.com\\/cs\\/znacky\\/apple\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/znacky\\/apple\",
\"en\": \"https:\\/\\/example.com\\/en\\/brands\\/apple\",
\"de\": \"https:\\/\\/example.com\\/de\\/marken\\/apple\",
\"pl\": \"https:\\/\\/example.com\\/pl\\/marki\\/apple\",
\"hu\": \"https:\\/\\/example.com\\/hu\\/markak\\/apple\",
\"*\": \"https:\\/\\/example.com\\/sk\\/znacky\\/apple\"
},
\"description\": {
\"default\": \"<p>Brand description<\\/p>\",
\"cs\": \"<p>Popis značky<\\/p>\",
\"sk\": \"<p>Popis značky SK<\\/p>\",
\"en\": \"<p>Brand description EN<\\/p>\",
\"de\": \"<p>Markenbeschreibung<\\/p>\",
\"pl\": \"<p>Opis marki<\\/p>\",
\"hu\": \"<p>Márkaleírás<\\/p>\",
\"*\": \"<p>Brand description<\\/p>\"
},
\"seo_title\": {
\"default\": \"Apple | Eshop\",
\"cs\": \"Apple | E-shop\",
\"sk\": \"Apple | Obchod\",
\"en\": \"Apple | Shop\",
\"de\": \"Apple | Shop\",
\"pl\": \"Apple | Sklep\",
\"hu\": \"Apple | Bolt\",
\"*\": \"Apple | Eshop\"
},
\"seo_description\": {
\"default\": \"SEO description\",
\"cs\": \"SEO popis\",
\"sk\": \"SEO popis SK\",
\"en\": \"SEO description EN\",
\"de\": \"SEO Beschreibung\",
\"pl\": \"Opis SEO\",
\"hu\": \"SEO leírás\",
\"*\": \"SEO description\"
}
}
}"
{
"success": true,
"imported": 2,
"updated": 1,
"skipped": 1,
"errors": [
{
"index": 3,
"id": "BRAND-004",
"errors": [
"The name.sk field is required when using language sk."
]
}
]
}
Soft-delete multiple brands at once by setting is_delete = true.
Brands are identified by external id (mapped to brand.remote_id).
Maximum 100 brands per request. Brands that don't exist or are already deleted are skipped.
Note: deleting a brand does NOT clear product.brand_id on associated products —
products continue pointing to the soft-deleted brand. The /brands list endpoint
filters out soft-deleted brands.
curl --request DELETE \
"https://api.pobo.space/api/v2/rest/brands" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
{
"success": true,
"deleted": 2,
"skipped": 1,
"errors": [
{
"index": 2,
"id": "BRAND-999",
"errors": [
"Brand not found"
]
}
]
}
Get paginated list of blogs with content in all active languages.
Only returns blogs in ready status with is_delete=false (includes both visible
and hidden blogs). Draft, review and generate blogs are excluded.
Language variants are returned only if is_active=true.
By default, only content.html is returned. Use the include parameter to request
additional content: marketplace (marketplace HTML), nested (raw widget JSON),
site_link (anchor navigation on H2 headings), rich_snippet (JSON-LD structured data).
When site_link is included, response contains site_link.html (rendered nav HTML per language)
and site_link.list (structured array of heading + slug per language).
Requires enable_site_link to be enabled on the eshop.
When rich_snippet is included, response contains rich_snippet.html (JSON-LD script tags per language)
and rich_snippet.json (parsed JSON-LD object per language).
Requires enable_rich_snippet to be enabled on the eshop.
The page number. Default: 1.
Items per page. Maximum: 100, Default: 100.
Filter by edited status (is_loaded). Default: true.
Filter blogs updated after this datetime. Format: Y-m-d H:i:s.
Comma-separated list of additional content to include: nested, marketplace, site_link, rich_snippet.
Comma-separated list of languages to include: default, cs, sk, en, de, pl, hu, all. Without this parameter only "default" is returned.
curl --request GET \
--get "https://api.pobo.space/api/v2/rest/blogs?page=1&per_page=50&is_edited=1&last_update_time_from=2024-01-01+14%3A30%3A00&include=marketplace%2Cnested%2Csite_link%2Crich_snippet&lang=default%2Ccs%2Csk" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"id": "BLOG-001",
"guid": "550e8400-e29b-41d4-a716-446655440000",
"category": "news",
"is_visible": true,
"is_loaded": false,
"name": {
"default": "Blog Title",
"sk": "Nazov blogu"
},
"description": {
"default": "<p>Blog content</p>",
"sk": "<p>Obsah blogu</p>"
},
"url": {
"default": "https://example.com/blog-title",
"sk": "https://example.com/sk/nazov-blogu"
},
"seo_title": {
"default": "Blog Title | SEO",
"sk": "Nazov blogu | SEO"
},
"seo_description": {
"default": "SEO description",
"sk": "SEO popis"
},
"content": {
"html": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "..."
},
"marketplace": {
"default": "<div class=\"pobo-content\">...</div>",
"cs": "..."
},
"nested": [
[
{
"id": 2,
"class": "empty",
"tag": "div",
"children": []
}
]
]
},
"site_link": {
"html": {
"default": "<div id=\"pobo-site-link\" class=\"pobo-site-link__container\"><nav class=\"pobo-site-link__nav\"><a href=\"#nadpis\" class=\"pobo-site-link__anchor\">Nadpis</a></nav></div>"
},
"list": {
"default": [
{
"heading": "Nadpis",
"slug": "nadpis"
}
]
}
},
"rich_snippet": {
"html": {
"default": "<script type=\"application/ld+json\">{...}</script>"
},
"json": {
"default": {
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": []
}
}
},
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-01-16T14:20:00.000000Z"
}
],
"meta": {
"current_page": 1,
"per_page": 100,
"total": 25
}
}
Import or update multiple blogs at once with multilingual content. Maximum 100 blogs per request. Invalid blogs will be skipped and reported in the errors array.
Supported languages: default, cs, sk, en, de, pl, hu
Validation rules:
curl --request POST \
"https://api.pobo.space/api/v2/rest/blogs" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"*\": {
\"id\": \"BLOG-001\",
\"category\": \"news\",
\"is_visible\": true,
\"images\": [
\"https:\\/\\/example.com\\/img1.jpg\"
],
\"name\": {
\"default\": \"Blog Title\",
\"sk\": \"Názov blogu\",
\"*\": \"Názov blogu\"
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/blog\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/blog\",
\"*\": \"https:\\/\\/example.com\\/sk\\/blog\"
},
\"description\": {
\"default\": \"<p>Content<\\/p>\",
\"sk\": \"<p>Obsah<\\/p>\",
\"*\": \"sed\"
},
\"seo_title\": {
\"default\": \"SEO Title\",
\"sk\": \"SEO Názov\",
\"*\": \"qui\"
},
\"seo_description\": {
\"default\": \"SEO Description\",
\"sk\": \"SEO Popis\",
\"*\": \"eum\"
}
}
}"
{
"success": true,
"imported": 2,
"updated": 1,
"skipped": 1,
"errors": [
{
"index": 3,
"id": "BLOG-004",
"errors": [
"The name.sk field is required when using language sk."
]
}
]
}
Soft-delete multiple blogs at once by setting is_delete = true. Maximum 100 blogs per request. Blogs that don't exist or are already deleted will be skipped.
curl --request DELETE \
"https://api.pobo.space/api/v2/rest/blogs" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
{
"success": true,
"deleted": 2,
"skipped": 1,
"errors": [
{
"index": 2,
"id": "BLOG-999",
"errors": [
"Blog not found"
]
}
]
}
Collect the rows of one listing batch: what the client sent us, merged with what we found, with the origin of every field.
Each field carries source: feed (from the uploaded file), research
(looked up, with confidence and reference URLs), generated (written by
a model) or manual (corrected by Pobo staff).
Fields we have no value for are OMITTED rather than returned empty — an empty value taken literally by an import would overwrite data on the client's side that Pobo never saw.
external_id is the client's own identifier from the uploaded file (code,
or EAN when there is no code), so rows can be matched back.
Batch id.
The page number. Default: 1.
Items per page. Maximum: 200, Default: 200.
Only rows changed after this datetime. Format: Y-m-d H:i:s.
curl --request GET \
--get "https://api.pobo.space/api/v2/rest/listing/42/product?page=1&per_page=200&updated_since=2026-08-20+08%3A00%3A00" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"external_id": "2062123",
"status": "done",
"updated_at": "2026-08-20T10:00:00+00:00",
"field": {
"name": {
"value": "DART SMU SKATE SR",
"source": "feed"
},
"brand": {
"value": "Bauer",
"source": "feed"
},
"bullet": {
"value": [
"FLEXLITE Chassis"
],
"source": "feed"
}
},
"parameter": [
{
"label": "Průměr koleček",
"value": "76 mm",
"source": "feed"
},
{
"label": "Vodní sloupec",
"value": "10 000 mm",
"source": "research",
"confidence": 100,
"reference": [
"https://example.com/product"
]
}
]
}
],
"meta": {
"current_page": 1,
"per_page": 200,
"total": 994
}
}
Single endpoint for clients that need to import multiple entity types in one call with all-or-nothing semantics. Useful when entities have cross-section dependencies (e.g. products referencing brands or categories created in the same request) — those references are resolved within one DB transaction.
Sections accepted (each optional): parameters, categories, brands, products, blogs.
Item structure inside each section is 1:1 with the single-entity endpoints
(see api-rest-v2.md).
Behavior:
parameters → categories → brands → products → blogs. Any DB-layer
exception triggers a full rollback.existing IDs ∪ in-request IDs as the valid set.curl --request POST \
"https://api.pobo.space/api/v2/rest/multi-import" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"parameters\": [
{
\"id\": 1,
\"name\": \"Color\",
\"values\": [
{
\"id\": 11,
\"value\": \"Red\"
},
{
\"id\": 12,
\"value\": \"Blue\"
}
]
}
],
\"categories\": [
{
\"id\": \"CAT-1\",
\"is_visible\": true,
\"name\": {
\"default\": \"Electronics\",
\"sk\": \"Elektronika\"
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/electronics\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/elektronika\"
},
\"description\": {
\"default\": \"<p>Electronics category<\\/p>\",
\"sk\": null
},
\"seo_title\": {
\"default\": \"Electronics | Shop\",
\"sk\": null
},
\"seo_description\": {
\"default\": \"Best electronics\",
\"sk\": null
}
}
],
\"brands\": [
{
\"id\": \"BRAND-001\",
\"is_visible\": true,
\"image_preview\": \"https:\\/\\/example.com\\/brands\\/apple-logo.png\",
\"name\": {
\"default\": \"Apple\",
\"sk\": \"Apple SK\"
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/znacky\\/apple\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/znacky\\/apple\"
},
\"description\": {
\"default\": \"<p>Brand description<\\/p>\",
\"sk\": null
},
\"seo_title\": {
\"default\": \"Apple | Eshop\",
\"sk\": null
},
\"seo_description\": {
\"default\": \"SEO description\",
\"sk\": null
}
}
],
\"products\": [
{
\"id\": \"PROD-1\",
\"is_visible\": true,
\"brand_id\": \"BRAND-001\",
\"categories_ids\": [
\"CAT-1\"
],
\"parameters_ids\": [
11
],
\"name\": {
\"default\": \"iPhone 15\",
\"sk\": \"iPhone 15 SK\"
},
\"short_description\": {
\"default\": \"Short desc\",
\"sk\": \"Krátky popis\"
},
\"description\": {
\"default\": \"<p>Full description<\\/p>\",
\"sk\": null
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/iphone-15\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/iphone-15-sk\"
},
\"seo_title\": {
\"default\": \"iPhone 15 | Eshop\",
\"sk\": null
},
\"seo_description\": {
\"default\": \"SEO description\",
\"sk\": null
},
\"images\": [
\"https:\\/\\/example.com\\/iphone.jpg\"
]
}
],
\"blogs\": [
{
\"id\": \"BLOG-1\",
\"category\": \"news\",
\"is_visible\": true,
\"name\": {
\"default\": \"New article\",
\"sk\": \"Nový článok\"
},
\"url\": {
\"default\": \"https:\\/\\/example.com\\/news\\/article\",
\"sk\": \"https:\\/\\/example.com\\/sk\\/spravy\\/clanok\"
},
\"description\": {
\"default\": \"<p>Article body<\\/p>\",
\"sk\": null
},
\"seo_title\": {
\"default\": \"Article | Blog\",
\"sk\": null
},
\"seo_description\": {
\"default\": \"Article SEO description\",
\"sk\": null
}
}
]
}"
{
"success": true,
"results": {
"parameters": {
"imported": 2,
"updated": 0,
"skipped": 0,
"errors": []
},
"categories": {
"imported": 5,
"updated": 0,
"skipped": 0,
"errors": []
},
"brands": {
"imported": 1,
"updated": 0,
"skipped": 0,
"errors": []
},
"products": {
"imported": 0,
"updated": 10,
"skipped": 0,
"errors": []
},
"blogs": {
"imported": 3,
"updated": 0,
"skipped": 0,
"errors": []
}
}
}
Import or update multiple products at once. Maximum 100 products per request. Invalid products will be skipped and reported in the errors array.
curl --request POST \
"https://api.pobo.space/api/v1/products/bulk-import" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
{
"success": true,
"imported": 2,
"updated": 0,
"skipped": 1,
"errors": [
{
"index": 0,
"id": "PROD-123",
"errors": [
"The name field is required."
]
}
]
}
Get paginated list of products with content in all supported languages.
Only returns products in ready status — draft, review and generate products are excluded.
The page number. Default: 1.
Items per page (max 100). Default: 100.
Filter by edited status. If true, returns only edited products. If false, returns only unedited products. If omitted, returns all products.
Filter products updated after this datetime. Format: Y-m-d H:i:s (e.g., 2024-01-01 14:30:00).
curl --request GET \
--get "https://api.pobo.space/api/v1/products/list?page=1&per_page=10&is_edited=1&last_update_time_from=2024-01-01+14%3A30%3A00" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"products": [
{
"id": "PROD-123",
"name": "Sample Product",
"short_description": "This is a sample product.",
"url": "https://example.com/product/123",
"content": {
"html": {
"default": "<h1>Sample Product Description</h1><p>This product is used for demonstration purposes.</p>",
"cs": "<h1>Popis vzorového produktu</h1><p>Tento produkt slouží pro demonstrační účely.</p>",
"en": "<h1>Sample Product Description</h1><p>This product is used for demonstration purposes.</p>",
"de": "<h1>Beispiel Produktbeschreibung</h1><p>Dieses Produkt wird zu Demonstrationszwecken verwendet.</p>",
"sk": "<h1>Popis vzorového produktu</h1><p>Tento produkt slúži na demonštračné účely.</p>"
},
"marketplace": {
"default": "<h1>Sample Product Description</h1><p>This product is used for demonstration purposes.</p>",
"cs": "<h1>Popis vzorového produktu</h1><p>Tento produkt slouží pro demonstrační účely.</p>",
"en": "<h1>Sample Product Description</h1><p>This product is used for demonstration purposes.</p>",
"de": "<h1>Beispiel Produktbeschreibung</h1><p>Dieses Produkt wird zu Demonstrationszwecken verwendet.</p>",
"sk": "<h1>Popis vzorového produktu</h1><p>Tento produkt slúži na demonštračné účely.</p>"
}
}
}
],
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"per_page": 10,
"to": 2,
"total": 2
}
}
Import or update multiple categories at once. Maximum 100 categories per request. Invalid categories will be skipped and reported in the errors array.
curl --request POST \
"https://api.pobo.space/api/v1/categories/bulk-import" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
{
"success": true,
"imported": 2,
"updated": 0,
"skipped": 1,
"errors": [
{
"index": 0,
"id": "A01.01.07",
"errors": [
"The name field is required."
]
}
]
}
Get paginated list of categories with content in all supported languages.
Only returns categories in ready status — draft, review and generate categories are excluded.
The page number. Default: 1.
Items per page (max 100). Default: 100.
Filter by edited status. If true, returns only edited categories. If false, returns only unedited categories. If omitted, returns all categories.
Filter categories updated after this datetime. Format: Y-m-d H:i:s (e.g., 2024-01-01 14:30:00).
curl --request GET \
--get "https://api.pobo.space/api/v1/categories/list?page=1&per_page=10&is_edited=1&last_update_time_from=2024-01-01+14%3A30%3A00" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"categories": [
{
"id": "A01.01.07",
"name": "Sample Category",
"url": "https://example.com/category/123",
"content": {
"html": {
"default": "<h1>Sample Category Description</h1><p>This category is used for demonstration purposes.</p>",
"cs": "<h1>Popis vzorové kategorie</h1><p>Tato kategorie slouží pro demonstrační účely.</p>",
"en": "<h1>Sample Category Description</h1><p>This category is used for demonstration purposes.</p>",
"de": "<h1>Beispiel Kategoriebeschreibung</h1><p>Diese Kategorie wird zu Demonstrationszwecken verwendet.</p>",
"sk": "<h1>Popis vzorovej kategórie</h1><p>Táto kategória slúži na demonštračné účely.</p>"
},
"marketplace": {
"default": "<h1>Sample Category Description</h1><p>This category is used for demonstration purposes.</p>",
"cs": "<h1>Popis vzorové kategorie</h1><p>Tato kategorie slouží pro demonstrační účely.</p>",
"en": "<h1>Sample Category Description</h1><p>This category is used for demonstration purposes.</p>",
"de": "<h1>Beispiel Kategoriebeschreibung</h1><p>Diese Kategorie wird zu Demonstrationszwecken verwendet.</p>",
"sk": "<h1>Popis vzorovej kategórie</h1><p>Táto kategória slúži na demonštračné účely.</p>"
}
}
}
],
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"per_page": 10,
"to": 2,
"total": 2
}
}
Import or update multiple parameters with their values at once. Maximum 100 parameters per request. Invalid parameters will be skipped and reported in the errors array.
curl --request POST \
"https://api.pobo.space/api/v1/parameters/bulk-import" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
{
"success": true,
"imported": 2,
"updated": 0,
"skipped": 1,
"values_imported": 4,
"values_updated": 0,
"errors": [
{
"index": 0,
"id": 1,
"errors": [
"The name field is required."
]
}
]
}
Verify that the white-label licence of the eshop is valid before you call anything else.
curl --request POST \
"https://api.pobo.space/api/v3/white-label/check-license" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": {
"eshop_id": 4242,
"has_valid_license": true
}
}
An entity is one product, category, blog post or page of the host, registered in Pobo so it can carry content.
curl --request POST \
"https://api.pobo.space/api/v3/white-label/register-entity" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"entity_id\": \"gikbgiem\",
\"type\": \"page\",
\"old_description\": [
\"odio\"
],
\"title\": [
\"nemo\"
]
}"
{
"data": {
"id": 991,
"entity_id": "4242",
"type": "product",
"design_id": 377,
"old_description": "<p>Původní popis z e-shopu</p>",
"title": "DJI Mavic 4 Pro",
"created_at": "2026-08-31T09:12:44+02:00",
"updated_at": "2026-08-31T09:12:44+02:00"
},
"message": "Entity registered successfully"
}
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/entity" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"id": 991,
"entity_id": "4242",
"type": "product",
"design_id": 377,
"old_description": "<p>Původní popis z e-shopu</p>",
"title": "DJI Mavic 4 Pro",
"created_at": "2026-08-31T09:12:44+02:00",
"updated_at": "2026-08-31T09:12:44+02:00"
}
],
"meta": {
"total": 1
}
}
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/entity/in/type/mollitia/html" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"html": {
"default": "<div class=\"pb-section\">…</div>",
"cs": "<div class=\"pb-section\">…</div>"
}
}
Templates the eshop can use, what each of them can be filled with, and the endpoint that fills one with your own content.
Accessible = visible public templates + custom templates bound to the eshop
via the eshop_design pivot (same rule as the main-app template picker).
Optional type query param (product/page/blog/category) narrows the list
to templates matching the edited entity type.
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/design" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"id": 377,
"name": "DJI Mavic 4 Pro",
"name_translation": {
"cs": "DJI Mavic 4 Pro"
},
"info": null,
"image_preview": "https://pobo-cdn.b-cdn.net/templates-preview/mavic.png",
"category": "product",
"type": "public",
"position": 3,
"hash": "6f1c0e0f2a",
"widgets_count": 11,
"preview_url": null
}
]
}
Used by the editor's template picker for custom templates without an
image_preview — the editor wraps the HTML in #pobo-widget-preview
and scales it down to a thumbnail.
The ID of the design.
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/design/7/preview" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": {
"id": 377,
"html": "<div class=\"pb-section\">…</div>"
}
}
Lists every widget of the template in display order: which roles it takes, how long each text may be, how many items a repeatable widget holds and how many images and icons it carries. Widgets that cannot be filled stay in the list with a reason, so the caller sees the whole template and does not recount positions.
The counterpart of POST /white-label/entity/{entityId}/type/{entityType}/design — without this call the caller has no way to know what to send.
The ID of the design.
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/design/2/structure" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"design_id": 377,
"design_name": "DJI Mavic 4 Pro",
"category": "product",
"widget": [
{
"design_widget_id": 71,
"position": 0,
"type": "section",
"widget_name": "Text vpravo a větší obrázek vlevo",
"widget_description": "Obrázek s textem",
"fillable": true,
"item_count": 1,
"field": [
{
"role": "paragraph",
"format": "html",
"max_length": 300,
"hint": "Odstavec popisující výhody produktu."
}
],
"item_field": [],
"image_slot": 1,
"icon_slot": 0
},
{
"design_widget_id": 80,
"position": 6,
"type": "benefit",
"widget_name": "Tři obrázky vedle sebe s textem uvnitř",
"widget_description": "Benefity produktu",
"fillable": true,
"item_count": 3,
"field": [],
"item_field": [
{
"role": "benefit_title",
"format": "text",
"max_length": 40,
"hint": "Krátký nadpis benefitu."
},
{
"role": "benefit_text",
"format": "text",
"max_length": 150,
"hint": "Věta k benefitu."
}
],
"image_slot": 3,
"icon_slot": 0
},
{
"design_widget_id": 110,
"position": 3,
"widget_name": "Velký obrázek vpravo a dva malé vlevo",
"fillable": false,
"reason": "no_content_field"
}
]
}
The content is written by the caller, not by AI: texts keyed by role, image and icon URLs of the host. The widgets are stored on the entity, so the merchant can open them in the editor afterwards — and the rendered HTML comes back in the same response, for every language of the eshop.
A widget that is not sent is not rendered at all, and a second call replaces the whole content of the entity. Costs no credits, nothing is generated.
Ask GET /white-label/design/{id}/structure first — which roles a widget takes, how long the texts may be and how many images it holds is a property of the template, not a convention.
curl --request POST \
"https://api.pobo.space/api/v3/white-label/entity/omnis/type/fuga/design" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"design_id\": 377,
\"widget\": [
{
\"design_widget_id\": 71,
\"image\": [
\"aj\"
],
\"icon\": [
\"bfxpvd\"
]
}
]
}"
{
"html": {
"default": "<div class=\"pb-section\">…</div>",
"cs": "<div class=\"pb-section\">…</div>"
},
"widget_created": 3
}
Widgets of an entity — read them, add them, reorder them, delete them.
curl --request POST \
"https://api.pobo.space/api/v3/white-label/content/quidem/type/nulla" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"widget_id\": 15,
\"position\": 57,
\"json\": [
{
\"id\": 19,
\"parent_id\": 3,
\"child_id\": 10,
\"class\": \"et\",
\"is_editable\": false,
\"tag\": \"et\",
\"value\": [],
\"extension\": []
}
],
\"added\": true,
\"ord\": [
{
\"id\": 6,
\"position\": 3
}
]
}"
[
{
"id": 512,
"key": 4821,
"widget_id": 8,
"children": [],
"html": "<div class=\"pb-section\">…</div>",
"is_original": false
}
]
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/content/et/type/laborum" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" [
{
"id": 512,
"key": 4821,
"widget_id": 8,
"children": [],
"html": "<div class=\"pb-section\">…</div>",
"is_original": false
}
]
curl --request PUT \
"https://api.pobo.space/api/v3/white-label/content/aspernatur/type/ex" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"*\": {
\"children\": [
{
\"id\": 5,
\"parent_id\": 4,
\"child_id\": 7,
\"class\": \"id\",
\"is_editable\": true,
\"tag\": \"quasi\",
\"value\": {
\"default\": \"repudiandae\",
\"cs\": \"delectus\",
\"sk\": \"doloribus\",
\"en\": \"nesciunt\",
\"de\": \"ut\",
\"pl\": \"quasi\",
\"hu\": \"nihil\",
\"uk\": \"perferendis\"
},
\"extension\": []
}
]
}
}"
[
{
"id": 512,
"key": 4821,
"widget_id": 8,
"children": [],
"html": "<div class=\"pb-section\">…</div>",
"is_original": false
}
]
curl --request DELETE \
"https://api.pobo.space/api/v3/white-label/content/aut/type/veniam/widget/ut" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" curl --request POST \
"https://api.pobo.space/api/v3/white-label/content/element-copy/nobis/type/est" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"action\": \"remove\",
\"index\": 7,
\"contentId\": 13,
\"parent\": \"cumque\"
}"
[
{
"id": 512,
"key": 4821,
"widget_id": 8,
"children": [],
"html": "<div class=\"pb-section\">…</div>",
"is_original": false
}
]
curl --request POST \
"https://api.pobo.space/api/v3/white-label/content/dom/qui/type/non" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": {
"entity_id": "4242",
"entity_type": "product",
"html": "<div class=\"pb-section\">…</div>"
}
}
curl --request POST \
"https://api.pobo.space/api/v3/white-label/content/copy-widget" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"source_entity_id\": \"clhewopjn\",
\"target_entity_id\": \"raangrae\",
\"type\": \"blog\"
}"
Let Pobo write the content: post the product data, poll the job, read the result. Costs credits.
Consumed by the editor's AI generator modal to show the balance and
disable the confirm action when the estimated run cost exceeds it
(the generate endpoint enforces the same limit server-side with 422).
Prices themselves come from the public /public/credit price list.
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/credit" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": {
"remaining": 1240
}
}
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/prompt" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": [
{
"id": 12,
"name": "Drony — technický tón",
"prompt": "Piš věcně, bez superlativů…",
"remove_exist_widget": true,
"use_serp_context": false,
"use_web_research": true,
"search_web": [
"https://www.dji.com"
],
"search_model": [
"openai"
]
}
]
}
Creates a JobGeneratorWhitelabel row (snapshot of the entity context sent by the embedding host page) and dispatches the async generation job. The editor then polls {@see show()} until the job is done and re-fetches the content.
curl --request POST \
"https://api.pobo.space/api/v3/white-label/content/eius/type/id/generate" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"design_id\": 1,
\"prompt_id\": 4,
\"remove_exist_widget\": false,
\"lang\": \"cs\",
\"name\": \"wlukyqwckhayusyskjjwyh\",
\"short_description\": \"otoyzc\",
\"old_description\": \"tozgwjmr\",
\"parameter\": \"yl\",
\"ean\": \"pk\",
\"use_serp_context\": true,
\"use_web_research\": true,
\"search_web\": [
\"jctyhgtdqifxpexidjiaimdh\"
],
\"search_model\": [
\"gemini\"
],
\"paragraph_length\": 21,
\"use_ai_profile\": true
}"
{
"data": {
"id": 77,
"status": "pending",
"design_id": 377,
"lang": "cs",
"widgets_created": 0,
"error_message": null,
"created_at": "2026-08-31T10:00:00+02:00",
"updated_at": "2026-08-31T10:00:00+02:00"
}
}
Called on editor init so a page refresh can resume the progress overlay and polling — the job id otherwise lives only in the editor's memory. 404 = nothing running (completed/failed jobs are not returned).
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/content/ratione/type/quo/generate" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": {
"id": 77,
"status": "done",
"design_id": 377,
"lang": "cs",
"widgets_created": 5,
"error_message": null,
"created_at": "2026-08-31T10:00:00+02:00",
"updated_at": "2026-08-31T10:01:12+02:00"
}
}
The ID of the generate.
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/generate/21886341" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" {
"data": {
"id": 77,
"status": "done",
"design_id": 377,
"lang": "cs",
"widgets_created": 5,
"error_message": null,
"created_at": "2026-08-31T10:00:00+02:00",
"updated_at": "2026-08-31T10:01:12+02:00"
}
}
The catalogue of widgets the editor offers, and the favourites of the eshop.
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/widget" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"category_id\": 6
}"
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/widget-favourite" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" curl --request POST \
"https://api.pobo.space/api/v3/white-label/widget-favourite" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"cwlklfozyhfhyi\",
\"widget_id\": 10,
\"children\": [
{
\"id\": 11,
\"parent_id\": 10,
\"child_id\": 2,
\"class\": \"hssp\",
\"is_editable\": 1,
\"tag\": \"qxfqxoxoqkfcw\",
\"value\": {
\"default\": \"corrupti\",
\"cs\": \"quidem\",
\"sk\": \"quaerat\",
\"en\": \"doloremque\",
\"de\": \"dignissimos\",
\"pl\": \"illo\",
\"hu\": \"laboriosam\",
\"uk\": \"qui\"
},
\"extension\": {
\"default\": \"est\",
\"cs\": \"libero\",
\"sk\": \"error\",
\"en\": \"aut\",
\"de\": \"eaque\",
\"pl\": \"sit\",
\"hu\": \"sit\",
\"uk\": \"velit\"
}
}
]
}"
The ID of the widget favourite.
curl --request GET \
--get "https://api.pobo.space/api/v3/white-label/widget-favourite/8" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json" The ID of the widget favourite.
curl --request DELETE \
"https://api.pobo.space/api/v3/white-label/widget-favourite/02847" \
--header "pobo-white-label-token: your-white-label-token-here" \
--header "Origin: https://your-allowed-domain.example" \
--header "Content-Type: application/json" \
--header "Accept: application/json"