{ "operationId": "publish-message-to-farcaster", "method": "POST", "path": "/v2/farcaster/message/", "summary": "Publish message", "description": "Publish a message to farcaster. The message must be signed by a signer managed by the developer. Use the @farcaster/core library to construct and sign the message. Use the Message.toJSON method on the signed message and pass the JSON in the body of this POST request.", "tags": [ "Signer" ], "parameters": [], "requestBody": { "required": true, "schema": { "$ref": "#/components/schemas/PublishMessageReqBody" }, "example": null }, "responses": { "200": { "description": "Success", "schema": { "$ref": "#/components/schemas/PublishMessageResponse" }, "example": null }, "400": { "description": "Bad Request", "schema": { "$ref": "#/components/schemas/ErrorRes" }, "example": null }, "500": { "description": "Server Error", "schema": { "$ref": "#/components/schemas/ErrorRes" }, "example": null } } }