# Get creator posts (/developer/api-reference/creators/CreatorsController_getCreatorPosts)

## GET /api/v1/creators/{creatorId}/posts
```json
{
  "operationId": "CreatorsController_getCreatorPosts",
  "parameters": [
    {
      "name": "creatorId",
      "required": true,
      "in": "path",
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "cursor",
      "required": false,
      "in": "query",
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "size",
      "required": false,
      "in": "query",
      "schema": {
        "maximum": 50,
        "exclusiveMinimum": true,
        "default": 20,
        "type": "integer",
        "minimum": 0
      }
    },
    {
      "name": "search",
      "required": false,
      "in": "query",
      "schema": {
        "type": "string"
      }
    }
  ],
  "responses": {
    "200": {
      "description": ""
    }
  },
  "tags": [
    "Creators"
  ],
  "summary": "Get creator posts"
}
```