Wwrify

Upload

Paste content or drop files to share your AI creations.

Anonymous uploads are unlisted — only people with the link can find them. Expires in 30 days. Sign in for permanent, listed uploads.

Developer API instructions

AI tools can push content directly via the API. Base64-encode files and POST to https://wr.fi/api/p for anonymous uploads or https://wr.fi/api/u with credentials for permanent uploads.

curl -X POST https://wr.fi/api/p \
  -H "Content-Type: application/json" \
  -d '{
    "title": "My Creation",
    "contentType": "code",
    "artifacts": [{
      "data": "'$(echo "print(hello)" | base64)'",
      "mimeType": "text/x-python",
      "filename": "hello.py"
    }],
    "generation": { "model": "claude-sonnet-4-20250514" }
  }'

Required fields

title— descriptive name
contentType— code / text / image / audio / video
artifacts[]— base64 data + mimeType + filename

Recommended fields

description— what this creation is
message— what was created and why
promptChain— the conversation
generation— model, provider
provenance— tool, agent
modelContext— key decisions, alternatives