pages_get_content
Retrieve content from specific Webflow pages using the page ID. Specify locale, limit, or offset to filter and manage data extraction efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
localeId | No | ||
offset | No | ||
page_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"type": "number"
},
"localeId": {
"type": "string"
},
"offset": {
"type": "number"
},
"page_id": {
"type": "string"
}
},
"required": [
"page_id"
],
"type": "object"
}