action osf_preprints_citation_read { label: "Retrieve a styled citation" description: "The citation for a preprint in a specific style.\n#### Returns\nReturns a JSON object with a `data` key that contains the representation of the preprint citation, in the requested style." provider: osf method: GET path: "/preprints/{preprint_id}/citation/{style_id}/" encoding: json input: { type: "object" properties: { preprint_id: { type: "string" } style_id: { type: "string" } } required: ["preprint_id", "style_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }