SquadRoom Paste ABOUT A simple pastebin powered by SquadRoom: https://squadroom.app Pastes are unlisted, optionally expire, and are readable by anyone with the link. Do not paste secrets. API USAGE POST https://paste.squadroom.app/ Send raw Markdown or JSON: {"content":"…","expiresIn":3600}. Responds with 201 and a public URL, expiry timestamp, and one-time delete token. expiresIn is optional and may be between 1 second and 365 days. GET https://paste.squadroom.app/ Retrieve raw Markdown. Send Accept: text/html to receive rendered HTML. GET https://paste.squadroom.app/.md Retrieve raw Markdown explicitly. DELETE https://paste.squadroom.app/ Delete a paste. Include its creation-time delete token in X-Delete-Token. EXAMPLES Paste a file: curl --data-binary @handoff.md https://paste.squadroom.app/ Paste from standard input for one hour: printf '# Handoff ' | curl --data-binary @- -H 'X-Expires-In: 3600' https://paste.squadroom.app/ Retrieve Markdown: curl https://paste.squadroom.app/.md Delete a paste: curl -X DELETE -H 'X-Delete-Token: ' https://paste.squadroom.app/