{ "operationId": "publish-cast", "method": "POST", "path": "/v2/farcaster/cast/", "summary": "Post a cast", "description": "Posts a cast or cast reply. Works with mentions and embeds. \n(In order to post a cast `signer_uuid` must be approved)", "tags": [ "Cast" ], "parameters": [], "requestBody": { "required": true, "schema": { "$ref": "#/components/schemas/PostCastReqBody" }, "example": null }, "responses": { "200": { "description": "Success", "schema": { "$ref": "#/components/schemas/PostCastResponse" }, "example": null }, "400": { "description": "Bad Request", "schema": { "$ref": "#/components/schemas/ErrorRes" }, "example": null }, "403": { "description": "Forbidden", "schema": { "$ref": "#/components/schemas/ErrorRes" }, "example": null }, "404": { "description": "Resource not found", "schema": { "$ref": "#/components/schemas/ErrorRes" }, "example": null }, "500": { "description": "Server Error", "schema": { "$ref": "#/components/schemas/ErrorRes" }, "example": null } } }