{ "operationId": "lookup-signer", "method": "GET", "path": "/v2/farcaster/signer/", "summary": "Status", "description": "Gets information status of a signer by passing in a signer_uuid (Use post API to generate a signer)", "tags": [ "Signer" ], "parameters": [ { "name": "signer_uuid", "in": "query", "required": true, "description": "UUID of the signer.\n`signer_uuid` is paired with API key, can't use a `uuid` made with a different API key.", "schema": { "example": "19d0c5fd-9b33-4a48-a0e2-bc7b0555baec", "title": "SignerUUID", "type": "string" } } ], "requestBody": null, "responses": { "200": { "description": "Success", "schema": { "$ref": "#/components/schemas/Signer" }, "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 } } }