Get a stream facet
const url = 'https://api.ebitex.io/content/delivery/v1/streams/example/facets';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.ebitex.io/content/delivery/v1/streams/example/facets \ --header 'Authorization: Bearer <token>'The distinct values of one declared filter (field), and how many items match each. Counts respect every other active filter but not the facet’s own, so a facet never narrows itself. Send the same filter.<key>= values you send the stream.
value is what to send back as the filter. Category values also carry path and label, and reference values carry label. Full-text filters have no facet.
Key: a delivery key (content.delivery.read).
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”Query Parameters
Section titled “Query Parameters”Responses
Section titled “ Responses ”OK
unknown_filter_field: no field, an undeclared one, or the full-text filter. validation_failed, unknown_category and category_not_in_group as for the stream.
missing_api_key or invalid_api_key: no key was sent, or it is unknown, revoked or expired.
scope_denied: the key lacks this route’s scope. origin_denied or ip_denied: a browser-safe key was used from an origin or address outside its restrictions. app_not_available: Content is not enabled for the organization.
unknown_stream: no stream has this external id or id.
Quota exceeded; Retry-After says how long to wait. too_many_failed_authentications: too many bad keys from this address.