Rentryco Edit Code New
curl -X POST https://rentry.co/api/new \
-d 'text=print("hello world")' \
-d 'title=Example' \
-d 'markdown=false'
curl -X POST https://rentry.co/api/edit/<id> \
-d "text=print('updated')" \
-d "edit_token=<token>"
(Note: API endpoints and parameter names may change — verify with current rentry documentation.)
More text here. Keep it short and aesthetic.
<div class="credit">[Credit / ID / Carrd Link]</div>
</div>
At the top of every Rentry page, you’ll find the "New" button. Clicking it does exactly what you expect: it clears the slate.
Users often append "new" to their search when:
If you’ve spent any time on rentry.co, you know it’s the go-to platform for clean, Markdown-based pastebin-style pages with a cyberpunk aesthetic. But one of its most powerful—and often misunderstood—features is the edit code. Recently, the platform introduced a refined approach to how these codes work, making collaborative writing and private page management smoother than ever. rentryco edit code new
Once you have your edit code, you can add a view password to your page.
Copy the text below and paste it into the "Edit Code" box when creating or editing your Rentry page.
! This is a template for a centered, aesthetic rentry page.
! Replace the text in brackets [ ] with your own content.
<style>
/* --- MAIN CONTAINER --- /
.main
background-color: #ffffff; / Background color /
color: #000000; / Text color /
padding: 20px;
border-radius: 5px;
max-width: 600px; / Width of the content box /
margin: auto; / Centers the box /
font-family: verdana; / Font style */
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
curl -X POST https://rentry
/* --- LINKS --- */
a
color: #000000;
text-decoration: underline;
a:hover
color: #888888;
/* --- HEADERS --- */
h1, h2, h3
text-align: center;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 2px;
border-bottom: 1px solid #000000;
padding-bottom: 10px;
/* --- IMAGES --- */
img
max-width: 100%;
border-radius: 3px;
/* --- MISC --- */
.credit
text-align: center;
font-size: 0.8em;
opacity: 0.7;
</style>
<div class="main">

