All Calendar
My Calendar
World Calendar
📥 Incoming Claims (Cash Sales)
🛍 Log Book Purchases / Owned Records
You can resell via + Product in TXTWRK post box
🛒 Log Book Listed For Sale / Reselling
These are your log-book items currently available for others to buy.
🛍 All Purchases
Every item you purchased across the network (log-book & general).
💰 Sales Made (Sold Items)
Records of products you have sold to others (from notifications).
🕑 Previous History
Coming soon…
View:
Active Checklists
Pending Checklists
My Checklists
Your Data
Click the button below to download all your data from our platform in CSV format (e.g., posts, purchases).
Download My Data
Forever Data Preservation
Preserve your digital legacy indefinitely on TXTWRK. Meaningful content — posts, creations, and contributions — should never disappear as platforms evolve or close. Launched in 2024, our permanence-first platform gives you full control over how your data is preserved, with transparency, fairness, and infrastructure built to last centuries.
TXTWRK empowers users to choose how their content endures, while offering networks the ability to integrate our API kit to provide the same control to their communities. This ensures a resilient, permanent digital ecosystem that protects history, creativity, and community contributions.
Core Features & Policy
Free Storage: 5GB per user to start, enabling early content contribution.
Lifetime Data Packs: £100 per 1GB for additional storage — transparent, fair pricing.
Forever Preservation: Data is retained indefinitely, with optional heavy archival for communities or networks.
Flexible Control: Users can adjust preservation settings for individual content.
Network Integration: API kit allows other platforms to adopt Forever Preservation for their users.
Long-term Reliability: Infrastructure built to scale, survive, and self-manage for centuries.
Storage & Cost Overview
Storage Size
Price (£)
Description
5GB
Free
Initial allocation for content creation and posting
1GB
£100
Additional permanent storage pack
5GB
£500
Expanded legacy storage for creators or startups
10GB+
£1,000+
Full archival for heavy contributors, communities, or networks
Why TXTWRK Matters
Preserves digital heritage for centuries, supporting culture and community memory.
Aligns storage with actual cost and long-term value, ensuring sustainability.
Creates a permanence-first culture: encouraging meaningful contributions over ephemeral content.
Supports startups, creators, and networks with equal, transparent pricing.
Join the journey to make your contributions last. Update your settings today, invest in your Forever Data Preservation, and help build a digital ecosystem designed for longevity, resilience, and integrity.
Load Forever Settings
Preservation Status:
Active
Inactive
Save Forever Settings
Partner Network Alliance Integration
We are taking steps to innovate & preserve the world's data for 1000's of years to come. Through innovation, collaboration and friendly donors, we can make this possible. Join the cause via Team@TXTWRK.com to support our community initiative. Join our mission to preserve user data forever, whether you’re a major network like TikTok or a micro network for niche communities. Our project, fueled by community support and donors, ensures public profiles and content live on, even if your service shuts down.
Why it matters:
Preserving data protects users’ digital legacy—posts, profiles, and contributions—vital for personal identity, community history, and cultural value.
Requirements:
Submit one request per domain, using your owned domain (e.g., yourdomain.com) and it also helps to make the request from your network/brand page here at TXTWRK such as TXTWRK.com/@TikTok for e.g. or TXTWRK.com/@MyDrivingNetwork
Commitment: If your service closes, you agree to transfer the domain and public user data to us, so we can host profiles at txtwrk.com/network/[yournetwork]/[username]. Our data transfer kit (soon to be developed) will make this seamless, with full transparency about what data will be preserved exactly.
Review process: We evaluate requests for community impact, user value, and alignment with our goal of a resilient digital ecosystem. Submit below and track status in “Your Network Requests.” Contact Team@TXTWRK.com for help. Currently you can install our widget into your settings panel using our Legacy Forecer API kit and your users can set intent today, which helps us understand our role & development better.
Request Network Integration
Select Your Network
Your Networks:
Select a network
Legacy Forever API Kit (kit.php)
Place this file in your /txtwrk/restore/ directory on your server (e.g., yourdomain.com/txtwrk/restore/kit.php). Note: API key is only available for approved networks.
Copy API Kit Code
Settings Widget Code
Paste this code into your settings page where you want the widget to appear. Ensure your session provides $_SESSION['memberID'] (as an integer) or replace with your session-based user ID variable:
Copy Widget Code
Your Network Requests
View the status of your network integration requests.
Load Your Network Requests
Network
Domain
Status
Action
Partner Network Status
View the status of all network partnerships for data preservation.
Load Partner Networks
Review Network Requests
Approve or reject partner network requests for data preservation integration.
Load Review Networks
Network
Domain
Status
Action
Connect Your Server
Verify ownership by uploading a small text file to your server's root directory. This proves you control the domain.
Server Base URL:
Add Server & Get Verification File
1. Create this file on your server
Filename: plug_txtwrk_server.txt Place it in the root directory (where your index.php or homepage lives).Content must be exactly the code below — no extra spaces or newlines at the end.
Copy File Content
2. After uploading the file, click Verify Now in the list below.
Your Connected Servers
Refresh / Load Servers
Messaging Access —
Close
Grant Access
File Access —
Close
Folders (one per line, e.g. /core/dir/123/)
Files (one per line, e.g. file.php or /core/dir/index.php)
Grant File Access
Install TXTWRK Server Bridge
After your server is verified, copy the code below and upload it to:
/server/txtwrk/manage.php
Copy manage.php
Once uploaded, TXTWRK workspaces will be able to connect to your server for file editing, chat, and requests.
<?php
header("Content-Type: application/json");
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
header("Access-Control-Allow-Headers: Content-Type");
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
http_response_code(200);
exit;
}
/* ---------------- INPUT ---------------- */
$action = $_GET['action'] ?? "list";
/* =====================================================
SERVER SETTINGS
===================================================== */
if ($action === "settings") {
echo json_encode([
"success"=>true,
"settings"=>[
"request_poll_interval"=>15000, // 15 seconds TUNE CODE
"autosave_delay"=>7000 // 7 seconds TUNE CODE
]
]);
exit;
}
/* ---------------- ROOT ---------------- */
$root = realpath(__DIR__ . "/../../");
if (!$root) {
echo json_encode(["success"=>false,"error"=>"Invalid server root"]);
exit;
}
/* ---------------- INPUT ---------------- */
$path = $_GET['path'] ?? "";
$path = trim($path, "/");
$target = $root;
if ($path !== "") {
$target = realpath($root . "/" . $path);
}
if ($target === false || strpos($target, $root) !== 0) {
echo json_encode(["success"=>false,"error"=>"Invalid path"]);
exit;
}
/* =====================================================
LIST DIRECTORY
===================================================== */
if ($action === "list") {
$folders = [];
$files = [];
$items = @scandir($target);
if ($items === false) {
echo json_encode(["success"=>false,"error"=>"Cannot read directory"]);
exit;
}
foreach ($items as $item) {
if ($item === "." || $item === "..") continue;
$full = $target . "/" . $item;
if (is_dir($full)) {
$folders[] = $item;
} else {
$files[] = $item;
}
}
sort($folders);
sort($files);
echo json_encode([
"success"=>true,
"path"=>$path,
"folders"=>$folders,
"files"=>$files
]);
exit;
}
/* =====================================================
CREATE FOLDER
===================================================== */
if ($action === "mkdir") {
$name = $_POST['name'] ?? "";
if (!$name) {
echo json_encode(["success"=>false,"error"=>"Missing folder name"]);
exit;
}
$new = $target . "/" . basename($name);
if (mkdir($new)) {
echo json_encode(["success"=>true]);
} else {
echo json_encode(["success"=>false,"error"=>"Cannot create folder"]);
}
exit;
}
/* =====================================================
CREATE FILE
===================================================== */
if ($action === "create_file") {
$name = $_POST['name'] ?? "";
if (!$name) {
echo json_encode(["success"=>false,"error"=>"Missing file name"]);
exit;
}
$file = $target . "/" . basename($name);
if (file_put_contents($file, "") !== false) {
echo json_encode(["success"=>true]);
} else {
echo json_encode(["success"=>false,"error"=>"Cannot create file"]);
}
exit;
}
/* =====================================================
DELETE FILE / FOLDER
===================================================== */
if ($action === "delete") {
$name = $_POST['name'] ?? "";
if (!$name) {
echo json_encode(["success"=>false,"error"=>"Missing target"]);
exit;
}
$full = $target . "/" . basename($name);
if (is_dir($full)) {
$ok = rmdir($full);
} else {
$ok = unlink($full);
}
echo json_encode(["success"=>$ok]);
exit;
}
/* =====================================================
FILE UPLOAD
===================================================== */
if ($action === "upload") {
if (!isset($_FILES['file'])) {
echo json_encode(["success"=>false,"error"=>"No file uploaded"]);
exit;
}
$name = basename($_FILES['file']['name']);
$dest = $target . "/" . $name;
if (move_uploaded_file($_FILES['file']['tmp_name'], $dest)) {
echo json_encode(["success"=>true]);
} else {
echo json_encode(["success"=>false,"error"=>"Upload failed"]);
}
exit;
}
/* =====================================================
ENSURE EDIT FILE + MEMBER LOCK
===================================================== */
if ($action === "ensure_edit") {
$file = $_POST['file'] ?? "";
$memberID = (int)($_POST['memberID'] ?? 0);
if (!$file || !$memberID) {
echo json_encode(["success"=>false,"error"=>"Missing params"]);
exit;
}
$base = realpath($root . "/" . $file);
if (!$base || strpos($base,$root)!==0) {
echo json_encode(["success"=>false,"error"=>"Invalid file"]);
exit;
}
$editFile = $base . ".txtwrk";
$lockFile = $base . "." . $memberID;
/* create edit buffer if missing */
if (!file_exists($editFile)) {
$content = file_get_contents($base);
$init = [
"history" => [
[
"content" => $content,
"cursor" => 0,
"time" => time()
]
]
];
file_put_contents($editFile, json_encode($init, JSON_PRETTY_PRINT));
}
/* check if another member is editing */
$locks = glob($base . ".*");
foreach ($locks as $l) {
if (preg_match('/\.\d+$/',$l) && $l !== $lockFile) {
echo json_encode([
"success"=>true,
"readonly"=>true
]);
exit;
}
}
/* create my lock */
if (!file_exists($lockFile)) {
file_put_contents($lockFile,"");
}
echo json_encode([
"success"=>true,
"readonly"=>false
]);
exit;
}
/* =====================================================
LOAD EDIT FILE
===================================================== */
if ($action === "load_edit") {
$file = $_GET['file'] ?? "";
$base = realpath($root . "/" . $file);
if (!$base || strpos($base,$root)!==0) {
echo json_encode(["success"=>false]);
exit;
}
$editFile = $base . ".txtwrk";
if (!file_exists($editFile)) {
$content = file_get_contents($base);
$init = [
"history" => [
[
"content" => $content,
"cursor" => 0,
"time" => time()
]
]
];
file_put_contents($editFile, json_encode($init, JSON_PRETTY_PRINT));
}
$json = json_decode(file_get_contents($editFile), true);
$history = [];
if ($json && isset($json["history"])) {
$history = $json["history"];
}
$last = end($history);
echo json_encode([
"success"=>true,
"history"=>$history,
"content"=>$last["content"] ?? "",
"cursor"=>$last["cursor"] ?? 0
]);
exit;
}
if ($action === "save_edit") {
$file = $_POST['file'] ?? "";
$content = $_POST['content'] ?? "";
$cursor = intval($_POST['cursor'] ?? 0);
$memberID = (int)($_POST['memberID'] ?? 0);
if (!$file || !$memberID) {
echo json_encode(["success"=>false,"error"=>"Missing parameters"]);
exit;
}
$base = realpath($root . "/" . $file);
if (!$base || strpos($base,$root)!==0) {
echo json_encode(["success"=>false,"error"=>"Invalid file"]);
exit;
}
/* VERIFY LOCK OWNERSHIP */
$lockFile = $base . "." . $memberID;
if (!file_exists($lockFile)) {
echo json_encode([
"success"=>false,
"error"=>"You do not own the edit lock for this file"
]);
exit;
}
$editFile = $base . ".txtwrk";
$history = [];
/* LOAD EXISTING HISTORY */
if (file_exists($editFile)) {
$json = json_decode(file_get_contents($editFile), true);
if ($json && isset($json["history"])) {
$history = $json["history"];
}
}
/* APPEND NEW EDIT */
$history[] = [
"content" => $content,
"cursor" => $cursor,
"memberID" => $memberID,
"time" => time()
];
/* WRITE HISTORY WITH FILE LOCK */
$fp = fopen($editFile, "c+");
if ($fp) {
flock($fp, LOCK_EX);
ftruncate($fp, 0);
fwrite($fp, json_encode([
"history"=>$history
], JSON_PRETTY_PRINT));
fflush($fp);
flock($fp, LOCK_UN);
fclose($fp);
} else {
echo json_encode([
"success"=>false,
"error"=>"Unable to write edit history"
]);
exit;
}
/* UPDATE REAL FILE */
file_put_contents($base, $content);
echo json_encode([
"success"=>true
]);
exit;
}
/* =====================================================
REQUEST FILE ACCESS
===================================================== */
if ($action === "request_file") {
$file = $_POST['file'] ?? "";
$memberID = (int)($_POST['memberID'] ?? 0);
if (!$file || !$memberID) {
echo json_encode(["success"=>false,"error"=>"Missing params"]);
exit;
}
$base = realpath($root . "/" . $file);
if (!$base || strpos($base,$root)!==0) {
echo json_encode(["success"=>false,"error"=>"Invalid file"]);
exit;
}
/* ---------------- FIND CURRENT OWNER ---------------- */
$locks = glob($base . ".*");
$currentOwner = null;
foreach ($locks as $l) {
if (preg_match('/\.(\d+)$/',$l,$m)) {
$currentOwner = (int)$m[1];
break;
}
}
if (!$currentOwner) {
echo json_encode(["success"=>false,"error"=>"No current owner"]);
exit;
}
/* ---------------- REQUEST QUEUE ---------------- */
$requestFile = $base . "." . $currentOwner;
$list = [];
if (file_exists($requestFile)) {
$json = json_decode(file_get_contents($requestFile), true);
if (is_array($json)) {
$list = $json;
}
}
foreach ($list as $r) {
if ($r["user"] == $memberID && $r["status"] === "pending") {
echo json_encode(["success"=>false,"error"=>"Already requested"]);
exit;
}
}
$list[] = [
"user"=>$memberID,
"status"=>"pending",
"time"=>time()
];
file_put_contents($requestFile, json_encode($list, JSON_PRETTY_PRINT));
/* UPDATE FLAG FILE */
$flag = $root . "/server/txtwrk/manage.php.txtwrk";
$data = [
"messages" => [],
"requests" => []
];
if (file_exists($flag)) {
$json = json_decode(file_get_contents($flag), true);
if ($json) {
$data = $json;
}
}
$found = false;
foreach ($data["requests"] as &$r) {
if ($r["user"] == $memberID && $r["file"] === $file) {
$r["count"]++;
$found = true;
break;
}
}
if (!$found) {
$data["requests"][] = [
"user"=>$memberID,
"file"=>$file,
"count"=>1
];
}
/* WRITE FLAG WITH LOCK */
$fp = fopen($flag,"c+");
if ($fp) {
flock($fp, LOCK_EX);
ftruncate($fp,0);
fwrite($fp,json_encode($data,JSON_PRETTY_PRINT));
fflush($fp);
flock($fp, LOCK_UN);
fclose($fp);
}
echo json_encode(["success"=>true]);
exit;
}
/* =====================================================
POLL REQUEST FLAG
===================================================== */
if ($action === "poll_requests") {
$flag = $root . "/server/txtwrk/manage.php.txtwrk";
if (!file_exists($flag)) {
file_put_contents($flag,json_encode([
"messages"=>[],
"requests"=>[]
],JSON_PRETTY_PRINT));
}
$data = json_decode(file_get_contents($flag),true);
echo json_encode([
"success"=>true,
"data"=>$data
]);
exit;
}
/* =====================================================
GRANT FILE ACCESS
===================================================== */
if ($action === "grant_request") {
$file = $_POST['file'] ?? "";
$memberID = (int)($_POST['memberID'] ?? 0);
if (!$file || !$memberID) {
echo json_encode(["success"=>false,"error"=>"Missing params"]);
exit;
}
$base = realpath($root . "/" . $file);
if (!$base || strpos($base,$root)!==0) {
echo json_encode(["success"=>false,"error"=>"Invalid file"]);
exit;
}
/* ---------------- FIND CURRENT OWNER ---------------- */
$locks = glob($base . ".*");
$currentOwner = null;
$currentLockFile = null;
foreach ($locks as $l) {
if (preg_match('/\.(\d+)$/',$l,$m)) {
$currentOwner = (int)$m[1];
$currentLockFile = $l;
break;
}
}
if (!$currentOwner) {
echo json_encode(["success"=>false,"error"=>"No current owner"]);
exit;
}
/* ---------------- LOAD REQUEST QUEUE ---------------- */
$requestFile = $base . "." . $currentOwner;
$queue = [];
if (file_exists($requestFile)) {
$json = json_decode(file_get_contents($requestFile), true);
if (is_array($json)) {
$queue = $json;
}
}
/* remove granted user from queue */
$queue = array_filter($queue,function($r) use ($memberID){
return $r["user"] != $memberID;
});
file_put_contents($requestFile,json_encode(array_values($queue),JSON_PRETTY_PRINT));
/* ---------------- TRANSFER LOCK ---------------- */
$newLock = $base . "." . $memberID;
if (!rename($currentLockFile,$newLock)) {
echo json_encode([
"success"=>false,
"error"=>"Failed transferring ownership"
]);
exit;
}
/* ---------------- UPDATE FLAG FILE ---------------- */
$flag = $root . "/server/txtwrk/manage.php.txtwrk";
if (!file_exists($flag)) {
file_put_contents($flag,json_encode([
"messages"=>[],
"requests"=>[]
],JSON_PRETTY_PRINT));
}
$data = json_decode(file_get_contents($flag),true);
foreach ($data["requests"] as $k => $r) {
if ($r["file"] === $file) {
unset($data["requests"][$k]);
}
}
$fp = fopen($flag,"c+");
if ($fp) {
flock($fp,LOCK_EX);
ftruncate($fp,0);
fwrite($fp,json_encode($data,JSON_PRETTY_PRINT));
fflush($fp);
flock($fp,LOCK_UN);
fclose($fp);
}
echo json_encode([
"success"=>true,
"new_owner"=>$memberID
]);
exit;
}
/* =====================================================
CHECK FILE OWNER
===================================================== */
if ($action === "check_file_owner") {
$file = $_GET['file'] ?? "";
if (!$file) {
echo json_encode(["success"=>false,"error"=>"Missing file"]);
exit;
}
$base = realpath($root . "/" . $file);
if (!$base || strpos($base,$root)!==0) {
echo json_encode(["success"=>false,"error"=>"Invalid file"]);
exit;
}
$locks = glob($base . ".*");
$owner = null;
foreach ($locks as $l) {
if (preg_match('/\.(\d+)$/',$l,$m)) {
$owner = (int)$m[1];
break;
}
}
echo json_encode([
"success"=>true,
"owner"=>$owner
]);
exit;
}
/* =====================================================
CLOSE SESSION (REMOVE LOCK)
===================================================== */
if ($action === "close_session") {
$memberID = (int)($_POST['memberID'] ?? 0);
if (!$memberID) {
echo json_encode(["success"=>false]);
exit;
}
$locks = glob($root . "/*." . $memberID);
foreach ($locks as $l) {
unlink($l);
}
echo json_encode(["success"=>true]);
exit;
}
/* =====================================================
CHAT COUNT - INCREMENT (only count, no messages stored)
===================================================== */
if ($action === "increment_chat_count") {
$flag = $root . "/server/txtwrk/manage.php.txtwrk";
$data = [
"messages" => [],
"requests" => [],
"chat_count" => 0
];
if (file_exists($flag)) {
$json = json_decode(file_get_contents($flag), true);
if ($json) $data = $json;
}
$data["chat_count"] = (int)($data["chat_count"] ?? 0) + 1;
/* WRITE WITH LOCK */
$fp = fopen($flag, "c+");
if ($fp) {
flock($fp, LOCK_EX);
ftruncate($fp, 0);
fwrite($fp, json_encode($data, JSON_PRETTY_PRINT));
fflush($fp);
flock($fp, LOCK_UN);
fclose($fp);
}
echo json_encode(["success"=>true]);
exit;
}
/* =====================================================
CHAT COUNT - GET (only returns the number)
===================================================== */
if ($action === "get_chat_count") {
$flag = $root . "/server/txtwrk/manage.php.txtwrk";
$count = 0;
if (file_exists($flag)) {
$json = json_decode(file_get_contents($flag), true);
$count = (int)($json["chat_count"] ?? 0);
}
echo json_encode([
"success" => true,
"count" => $count
]);
exit;
}
echo json_encode(["success"=>false,"error"=>"Unknown action"]);
?>
Domains where you can create workspaces
These are your verified servers or servers where someone has granted you file access.
Coins Overview
Hey
Signed in as
You have 0 coins.
Withdraw Funds
Money: £0.00
Transaction History
Filter by Status:
All
Purchases
Withdrawals
Pending Withdrawals
Approved Withdrawals
Rejected Withdrawals
Load More
Donations Overview
Signed in as
Total Incoming Donations: 0 (Total: £0.00 )
Total Outgoing Donations: 0 (Total: £0.00 )
You have the API Kit installed, enabling advanced donation features!
Incoming Donations
Load More
Outgoing Donations
Load More
Investor Overview
Signed in as
Total Investments Developed: 0 (Total Raised: £0.00 )
Total Investments Purchased: 0 (Total Invested: £0.00 )
Investments Developed
Filter:
All
Search
Load More
Investments Purchased
Filter:
All
Search
Load More
Payee Details
These details will be used when the company/person you invested in needs to pay you (e.g. profit share, dividends, refunds).
People to Pay
Investors who have put money into your projects. Use this to process payments, profit shares, or refunds.
Download People to Pay (CSV)
Load People to Pay
Load More
Business Overview
Signed in as
Total Incoming: £0.00
Total Outgoing: £0.00
Funding & Product Details
Product Development
Marketing & Customer Acquisition
Hiring & Team Expansion
Research & Innovation
Infrastructure & Operations
Sales & Distribution Channels
Technology & Systems
Legal & Compliance
Mergers & Acquisitions
Global Expansion
Customer Support & Retention
Brand Building & Awareness
Product Testing & Prototyping
Supply Chain & Logistics
Strategic Partnerships & Alliances
Debt Repayment
Working Capital
Sustainability & Green Initiatives
Training & Development
Employee Benefits & Welfare
Market Research & Competitive Analysis
Intellectual Property Protection
Acquiring Intellectual Property
Community Engagement & CSR
Founders Location:
Select countries (hold Ctrl/Cmd)
Abkhazia Afghanistan Albania Algeria American Samoa Andorra Angola Anguilla Antigua and Barbuda Argentina Armenia Aruba Ascension Island Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bonaire, Sint Eustatius, and Saba Bosnia and Herzegovina Botswana Brazil British Virgin Islands Brunei Bulgaria Burkina Faso Burma Burundi Cabo Verde Cambodia Cameroon Canada Cayman Islands Central African Republic Chad Channel Islands Chile China Christmas Island Cocos Islands Colombia Comoros Congo (Brazzaville) Congo (Kinshasa) Cook Islands Costa Rica Croatia Cuba Curaçao Cyprus Czechia Denmark Djibouti Dominica Dominican Republic East Timor Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Eswatini Ethiopia Falkland Islands (Islas Malvinas) Faroe Islands Fiji Finland France French Guiana French Polynesia Gabon Gambia, The Gaza Strip Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Honduras Hong Kong Hungary Iceland India Indonesia Iran Iraq Ireland Isle of Man Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea, North Korea, South Kosovo Kuwait Kyrgyzstan Laos Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macau Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia, Federated States of Moldova Monaco Mongolia Montenegro Montserrat Morocco Mozambique Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island North Macedonia Northern Mariana Islands Norway Oman Pakistan Palau Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Islands Poland Portugal Puerto Rico Qatar Reunion Romania Russia Rwanda Saint Barthelemy Saint Helena, Ascension, and Tristan da Cunha Saint Kitts and Nevis Saint Lucia Saint Martin Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Maarten Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and the South Sandwich Islands South Georgia and South Sandwich Islands South Sudan Spain Sri Lanka Sudan Suriname Svalbard Sweden Switzerland Syria Taiwan Tajikistan Tanzania Thailand Timor-Leste Togo Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu U.S. Virgin Islands Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Virgin Islands, British Wallis and Futuna West Bank Yemen Zambia Zimbabwe All 1+ Continent
Founders Birth Country:
Select countries (hold Ctrl/Cmd)
Abkhazia Afghanistan Albania Algeria American Samoa Andorra Angola Anguilla Antigua and Barbuda Argentina Armenia Aruba Ascension Island Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bonaire, Sint Eustatius, and Saba Bosnia and Herzegovina Botswana Brazil British Virgin Islands Brunei Bulgaria Burkina Faso Burma Burundi Cabo Verde Cambodia Cameroon Canada Cayman Islands Central African Republic Chad Channel Islands Chile China Christmas Island Cocos Islands Colombia Comoros Congo (Brazzaville) Congo (Kinshasa) Cook Islands Costa Rica Croatia Cuba Curaçao Cyprus Czechia Denmark Djibouti Dominica Dominican Republic East Timor Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Eswatini Ethiopia Falkland Islands (Islas Malvinas) Faroe Islands Fiji Finland France French Guiana French Polynesia Gabon Gambia, The Gaza Strip Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Honduras Hong Kong Hungary Iceland India Indonesia Iran Iraq Ireland Isle of Man Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea, North Korea, South Kosovo Kuwait Kyrgyzstan Laos Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macau Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia, Federated States of Moldova Monaco Mongolia Montenegro Montserrat Morocco Mozambique Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island North Macedonia Northern Mariana Islands Norway Oman Pakistan Palau Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Islands Poland Portugal Puerto Rico Qatar Reunion Romania Russia Rwanda Saint Barthelemy Saint Helena, Ascension, and Tristan da Cunha Saint Kitts and Nevis Saint Lucia Saint Martin Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Maarten Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and the South Sandwich Islands South Georgia and South Sandwich Islands South Sudan Spain Sri Lanka Sudan Suriname Svalbard Sweden Switzerland Syria Taiwan Tajikistan Tanzania Thailand Timor-Leste Togo Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu U.S. Virgin Islands Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Virgin Islands, British Wallis and Futuna West Bank Yemen Zambia Zimbabwe All 1+ Continent
Product Type:
SaaS (Software as a Service)
FinTech
HealthTech
EdTech
AI & Machine Learning
Blockchain & Crypto
E-commerce & Marketplace
Consumer Goods
Mobility & Transport
GreenTech
Biotech
Cybersecurity
Cloud Computing
AR/VR & Metaverse
Gaming
IoT (Internet of Things)
Agritech
PropTech
Media & Content Creation
Robotics
Electronics
Consumer Technology
Entertainment
Industrial Tech
Smart Devices
Automation
Educational Products
Digital Platforms
Mobile Apps
Community & Social Platforms
Branding & Marketing
Content Creators & Influencers
Creative Arts & Artists
Nonprofit & Social Impact
Fashion & Apparel
Music & Audio
Sports & Fitness
Media & Journalism
Digital Art & NFTs
Crowdfunding Platforms
Consumer Services
Cultural Products & Heritage
Product Description:
Product Revenue Model:
Subscription
One-Time Payment
Freemium
Pay-Per-Use
Ad-Based
Tiered Pricing
Licensing
Crowdfunding
Donation-Based
Product Currency:
Select Currency
USD - United States Dollar
EUR - Euro
GBP - British Pound
JPY - Japanese Yen
AUD - Australian Dollar
CAD - Canadian Dollar
CHF - Swiss Franc
CNY - Chinese Yuan
INR - Indian Rupee
RUB - Russian Ruble
BRL - Brazilian Real
MXN - Mexican Peso
ZAR - South African Rand
KRW - South Korean Won
SGD - Singapore Dollar
HKD - Hong Kong Dollar
SEK - Swedish Krona
NOK - Norwegian Krone
DKK - Danish Krone
NZD - New Zealand Dollar
MYR - Malaysian Ringgit
AED - United Arab Emirates Dirham
SAR - Saudi Riyal
PHP - Philippine Peso
TWD - Taiwan Dollar
IDR - Indonesian Rupiah
EGP - Egyptian Pound
THB - Thai Baht
ILS - Israeli New Shekel
PLN - Polish Zloty
JOD - Jordanian Dinar
Product Price (Range):
Product Availability:
Product Location:
Select a country
Abkhazia Afghanistan Albania Algeria American Samoa Andorra Angola Anguilla Antigua and Barbuda Argentina Armenia Aruba Ascension Island Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bonaire, Sint Eustatius, and Saba Bosnia and Herzegovina Botswana Brazil British Virgin Islands Brunei Bulgaria Burkina Faso Burma Burundi Cabo Verde Cambodia Cameroon Canada Cayman Islands Central African Republic Chad Channel Islands Chile China Christmas Island Cocos Islands Colombia Comoros Congo (Brazzaville) Congo (Kinshasa) Cook Islands Costa Rica Croatia Cuba Curaçao Cyprus Czechia Denmark Djibouti Dominica Dominican Republic East Timor Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Eswatini Ethiopia Falkland Islands (Islas Malvinas) Faroe Islands Fiji Finland France French Guiana French Polynesia Gabon Gambia, The Gaza Strip Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Honduras Hong Kong Hungary Iceland India Indonesia Iran Iraq Ireland Isle of Man Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea, North Korea, South Kosovo Kuwait Kyrgyzstan Laos Latvia Lebanon Lesotho Liberia Libya Liechtenstein Lithuania Luxembourg Macau Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia, Federated States of Moldova Monaco Mongolia Montenegro Montserrat Morocco Mozambique Namibia Nauru Nepal Netherlands New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island North Macedonia Northern Mariana Islands Norway Oman Pakistan Palau Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Islands Poland Portugal Puerto Rico Qatar Reunion Romania Russia Rwanda Saint Barthelemy Saint Helena, Ascension, and Tristan da Cunha Saint Kitts and Nevis Saint Lucia Saint Martin Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Sint Maarten Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and the South Sandwich Islands South Georgia and South Sandwich Islands South Sudan Spain Sri Lanka Sudan Suriname Svalbard Sweden Switzerland Syria Taiwan Tajikistan Tanzania Thailand Timor-Leste Togo Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu U.S. Virgin Islands Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Virgin Islands, British Wallis and Futuna West Bank Yemen Zambia Zimbabwe All 1+ Continent
Product Audience:
B2B (Business to Business)
B2C (Business to Consumer)
Enterprise Customers
Startups
Government & Public Sector
Students & Educational Institutions
NGOs & Nonprofits
Charities
Retailers & Merchants
Healthcare Providers
AI Data Developers
Market Size:
Product Age Range:
0-5 Years
6-10 Years
11-15 Years
16-20 Years
21-30 Years
31-40 Years
41-50 Years
51-60 Years
61-70 Years
71-80 Years
81-90 Years
91-100 Years
Environmental Duty:
Fully Embracing (Green)
Incorporating Sustainability
Considering Environmental Impact
Neutral (Minimal Impact)
No Impact
Carbon Offset
Eco-Friendly Practices
Environmentally Conscious
Recyclable Materials
Not Applicable
Innovation Level:
Product Innovation
Design Innovation
Technology Innovation
Sustainability Innovation
Service Innovation
Business Model Innovation
Market Innovation
Efficiency Innovation
User Experience Improvement
None
Exit Option:
Select Exit Option
IPO
Merger
Acquisition
Licensing
Private Sale
Bankruptcy
Secondary Market
Share Buyback
Dividend Payouts
Recapitalization
Debt Financing
Strategic Partnership
Management Buyout (MBO)
Employee Buyout (EBO)
Liquidation
Other
Exit Target Date:
Save Funding Details
Search Organisations
Here you can add your organisation to a group to consolidate feedback.
Selected Organisations
Confirm Selection
My Organisations
Ad Credits Overview
Hey
Signed in as
You have 0 ad credits.
Buy Ad Credits
Credits: 0
Transaction History
Filter by Type:
All
Purchases
Load More
Create or Modify Advert
Make/Update an Advert
Subscription Overview
Hey
Signed in as
Your plan: Free
Expiry: -
Learn About Premium
Upgrade to Premium and get early access to:
Now Available...
Set Feed Landing
Get Subscribers & get paid 100% via PayPal*
Label people & access them in features
Supporting early helps us grow faster
...list in update
Coming soon in additional Tiers...
AI-powered image & video post creation
Next-gen checklist tools (open-source)
Organise your quick panel icons
Spaces: Custom dashboards for your work
Share spaces and summaries
More in dev!
Premium will be our main Tier alongside Platinum in development, where we will have Additional Tiers such as 1. Our AI tool and 2. Storage Tiers. Premium will eventually have 30 perks, platinum will have 100!
By making your own Tiers in Get Subscribers, you can set the price of the Tier, make it active/inactive, delete it if you have no existing subscribers with it and define it via our post creation box or update the PPV settings in Manage on a post.
Subscribe Now
1 Year Premium (£100)
3 Years Premium (£200, Save £100)
Confirm Selection
Upgrade to Premium
Connected to many TXTWRK features across our network, designed to bring people and communities closer to you.
View Examples
Select a Country to see hierarchy examples:
☰
Code Playground
HTML/CSS/JS
Python
C
C++
Java
Run ▶
Close ✖
TXTWRK City of Derby, Derby, Derbyshire, East Midlands, England, United Kingdom, Europe Our mission is to help people make text work in daily life. Get investment, volunteers, donations & more publicly…
Join the journey & make a profile to remember... Discover our investment opportunities via our card: @ TXTWRK
We developed & support the @ UnitedKingdom movement through #UnitedKingdom
Brand
12/01/2024
Donations: £2.50
▦ Photos
See More ▦ Videos
See More
▦ Covers
Profile Photos
Profile Covers
See More
Active: 23 hours ago
2026 2027 2028 2029 2030 2031 All Months January February March April May June July August September October November December
Select a Store Location...
▼
New HQ 1
Flat 3 Bramble Complex, DE1 1HW
City of Derby, Derby, Derbyshire, East Midlands, England, United Kingdom, Europe
TXTWRK HQ
Flat 3 Bramble Complex, DE1 1HW
City of Derby, Derby, Derbyshire, East Midlands, England, United Kingdom, Europe
Loading your most recent activity...
Posts
Topics
Financials
Quarterlys
Shares
Notes
Needs
Contributions
Timetable
Intel
To Dos
❤ PAGES @Pledges TXTWRK Pledges Uniting communities through supporting & developing pledges.
@Stories TXTWRK Stories We feature success stories made at TXTWRK, from around the world, from the feedback in our streets, right up to...
@Support Support from TXTWRK Support from @TXTWRK
@UnitedKingdom United Kingdom Official support page for political transparency in the United Kingdom, for all citizens to have a voice and play a...
Opportunities MP3 FLOW
Your browser does not support the audio element.
Your browser does not support the audio element.
Your browser does not support the audio element.
Your browser does not support the audio element.
Your browser does not support the audio element.
Load More Tracks
Loading more tracks...
No more tracks to show
MENU
S1 E1 Psychology Research by @ImSunnyClaire
Checklists Command Input 1.0
Summary of Funding Rounds
Person of Interest X 2025
NFT The Platinum Collection @TXTWRK
⛶
This clearly works nicely...
Uncover Post