get_posts
Retrieve and filter Erick Wendel's talks, blog posts, and videos by ID, title, language, or portal, with pagination support for efficient results management.
Instructions
Get a list of posts with optional filtering and pagination.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | No | Filter posts by ID | |
language | No | Filter posts by language | |
limit | No | Maximum number of posts to return | |
portal | No | Filter posts by portal | |
skip | No | Number of posts to skip | |
title | No | Filter posts by title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Filter posts by ID",
"type": "string"
},
"language": {
"description": "Filter posts by language",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of posts to return",
"type": "number"
},
"portal": {
"description": "Filter posts by portal",
"type": "string"
},
"skip": {
"default": 0,
"description": "Number of posts to skip",
"type": "number"
},
"title": {
"description": "Filter posts by title",
"type": "string"
}
},
"type": "object"
}