Client Libraries
The official client is onetime-ruby, which supports API v1 and v2, all regional domains, and custom base URLs.
Everything else on this page is community-maintained. Most of these
libraries predate API v2 and the regional domains, so they typically call the
deprecated v1 endpoints against onetimesecret.com — check each entry’s
status note, and verify a library works against your region or self-hosted
instance before depending on it.
| Language | Library | Last activity¹ | Regional / custom domain |
|---|---|---|---|
| Ruby | onetime-ruby (official) | 2026-06 | ✅ all regions + custom base URL |
| Go | go-onetimesecret | 2026-05 | US host |
| Python | onetimesecret-cli | 2024-11 | US / EU region option |
| Go | otsgo | 2024-03 | not documented |
| PowerShell | OneTimeSecret | 2021-06 | custom base URL |
| Bash | onetimesecret-bash | 2020-05 | custom host |
| Python | py_onetimesecret | 2019-05 | ❌ (Python 2-era) |
| C# | OneTimeSharp | 2018-05 | ❌ |
| Java | onetime-java | 2014-06 | self-hosted URL only |
| Perl | Net::OneTimeSecret | 2012-02 | ❌ |
¹ Most recent commit or release at the time of the last audit (2026-07).
GitHub page onetime-ruby by Delano — official client, actively maintained (last commit 2026-06). Supports API v1 (deprecated) and v2, regional domains, and custom base URLs. Requires Ruby 3.1+, zero runtime dependencies.
Usage Example
Section titled “Usage Example”require 'onetime/api'
api = Onetime::API.new('YOUR_EMAIL', 'YOUR_OTS_APIKEY')options = { secret: 'Jazz, jazz and more jazz.', recipient: 'example@onetimesecret.com', ttl: 7200}
ret = api.post('/share', options)puts ret['secret_key']Python
Section titled “Python”GitHub page - onetimesecret-cli
by slashpass — community-maintained (last
commit 2024-11). Supports a region option (us / eu).
Usage Example
Section titled “Usage Example”from onetimesecret import OneTimeSecretCli
cli = OneTimeSecretCli(ONETIMESECRET_USER, ONETIMESECRET_KEY)cli.create_link("secret") # return a link like https://onetimesecret.com/secret/xxxxxxxxxxxGitHub page - py_onetimesecret
by Vladislav Stepanov — unmaintained (last
commit 2019; the example below is Python 2). Uses the deprecated v1 API against
onetimesecret.com only.
Usage Example
Section titled “Usage Example”from onetimesecret import OneTimeSecret
o = OneTimeSecret("YOUR_EMAIL", "YOUR_OTS_APIKEY")secret = o.share(u"test")
print o.retrieve_secret(secret["secret_key"])# {u'secret_key': u'dtr7ixukiolpx1i4i87kahmhyoy2q65',# u'value': u'test'}Net::OneTimeSecret on CPAN by Kyle Dawkins — unmaintained (last release 0.04, 2012-02). Predates API v2 and regional domains.
Usage Example
Section titled “Usage Example”#!/usr/bin/env perl
use Net::OneTimeSecret;
# Note: replace these with yours in order for this to work!my $customerId = 'YOUR_EMAIL';my $testApiKey = 'YOUR_OTS_APIKEY';
my $api = Net::OneTimeSecret->new( $customerId, $testApiKey );my $result = $api->shareSecret( 'Jazz, jazz and more jazz.', passphrase => 'thepassword', recipient => 'kyle@shoffle.com', ttl => 7200, );printf( "%s\n", $result->{secret_key} );
my $secret = $api->retrieveSecret( $result->{secret_key}, passphrase => "thepassword" );printf( "%s\n", $secret->{value} );GitHub page - onetime-java by Marcin Pawlowski — unmaintained (last commit 2014-06). Takes an instance URL, so it may work self-hosted, but it predates API v2.
Usage Example
Section titled “Usage Example”OneTimeSecret ots = new OneTimeSecretRestImpl( "https://path/to/ots/instance", "ots-username", "ots-apikey");
GenerateResponse generateResponse = ots.generate( new GenerateRequest.Builder() .withPassphrase("supersecret") .build());
RetrieveResponse retrieveResponse = ots.retrieve( new RetrieveRequest.Builder() .withSecretKey(shareResponse.getSecretKey()) .withPassphrase("supersecret") .build());
assertEquals(generateResponse.getValue(), retrieveResponse.getValue());GitHub page - OneTimeSharp
by Vladislav Stepanov — unmaintained (last
commit 2018-05). Uses the deprecated v1 API against onetimesecret.com only.
Usage Example
Section titled “Usage Example”# You can use OneTimeSharp in any of your projects which are compatible with .NET (4.0+) or Mono (2.10.8+).using VStepanov.OneTimeSharp;
class Test{ static void Main(string[] args) { var ots = new OneTimeSecret("YOUR_EMAIL", "YOUR_OTS_APIKEY");
var generated = ots.GenerateSecret();
Console.WriteLine(generated.Value); // LR*?us*A(UT*
Console.WriteLine(generated.SecretKey); // ikzx3m77j5by8411cg5lk5fvfylvl0i Console.WriteLine(ots.GetSecretLink(generated)); // https://onetimesecret.com/secret/ikzx3m77j5by8411cg5lk5fvfylvl0i
var shared = ots.ShareSecret("Hello, OTS!");
Console.WriteLine(shared.MetadataKey); // kd6rgsucl98qbgu9eavjq4k5sdxsom0 Console.WriteLine(ots.GetMetadataLink(shared)); // https://onetimesecret.com/private/kd6rgsucl98qbgu9eavjq4k5sdxsom0 }}GitHub page - onetimesecret
by Corbalt — community-maintained (last
commit 2026-05, updated for the us.onetimesecret.com host). Includes a CLI.
Usage Example
Section titled “Usage Example”import ots "github.com/corbaltcode/go-onetimesecret"
client := ots.Client{ Username: "user@example.com", Key: "my api key",}
metadata, err := client.Put("the launch codes", "passphrase", 0, "")if err != nil { // handle error}
secret, err := client.Get(metadata.SecretKey, "passphrase")if err != nil { // handle error}
// prints "the launch codes"print(secret)Usage Example as CLI
Section titled “Usage Example as CLI”$ go install github.com/corbaltcode/go-onetimesecret/cmd/ots@latest
$ ots put 'what is essential is invisible to the eye'hdjk6p0ozf61o7n6pbaxy4in8zuq7sm ifipvdpeo8oy6r8ryjbu8y7rhm9kty9
$ ots get hdjk6p0ozf61o7n6pbaxy4in8zuq7smwhat is essential is invisible to the eye
$ ots genrVjbS$twCJkS 4nwhy7v4fnabayqc5auv4ogh0nfr20 flsdlaun6hwczqu9utmc0vts5xj9xu1
$ ots burn flsdlaun6hwczqu9utmc0vts5xj9xu1flsdlaun6hwczqu9utmc0vts5xj9xu1Go (lib)
Section titled “Go (lib)”GitHub page by Emídio Neto — community-maintained (last release v1.1.0, 2024-03). Regional-domain support not documented.
Usage Example
Section titled “Usage Example”// Build a new clientclient := ots.NewClient( WithUsername("otsuser@domain.com"), WithApiKey("xxxxxxxx"),)
// Send a request with contextctx := context.Background()response, err := client.GetStatus(ctx)if err != nil { panic(err)}
fmt.Println(response.Status)PowerShell
Section titled “PowerShell”GitHub page - OneTimeSecret
by Craig Gumbley — unmaintained (last
release 2021-06). Supports a custom -BaseUrl, so it can point at a region or
self-hosted instance, but it predates API v2.
Usage Example
Section titled “Usage Example”# Install from the PowerShell galleryInstall-Module -Name OneTimeSecret -Scope CurrentUser
# Set connection informationSet-OTSAuthorizationToken -Username user@mail.com -APIKey xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
# Generate a new shared secretNew-OTSSharedSecret -Secret "Very Secret" -Passphrase 1234 -Recipient user@mail.com
# Retrieve a secretGet-OTSSecret -SecretKey qqevnp70b4uoiax4knzhwlhros6ne7x -Passphrase 1234
# View all functions that are availableGet-Command -Module OneTimeSecret | Select NameGitHub page - OneTimeSecret-bash
by Eric Engstrom — unmaintained (last
commit 2020-05). Supports a custom host via ots_set_host, but predates API
v2 and regional domains.
Usage Example as Scripting API
Section titled “Usage Example as Scripting API”# source for use anonymously (secrets created anonymously)source ots.bash
# or, source with specific auth credentialsAPIUSER="USERNAME"APIKEY="APIKEY"source ots.bash -u $APIUSER -k $APIKEY
# check status of serverots_status
# create a secret and get back the URLURL=$(echo "secret" | ots_share)
# share a multi line secret via HEREDOC.URL=$(ots_share <<-EOF This is a Secret ... on multiple linesEOF)
# pass options to share or generate.URL=$(ots_share ttl=600 \ passphrase="shared-secret" \ recipient="someone@somewhere.com" <<< "SECRET")
# fetch the secret datalocal DATA="$(ots_retrieve "$URL")"
# share/generate a new secret, and get back the private metadata keylocal KEY=$(ots_metashare <<< "SECRET")local KEY=$(ots_metagenerate)
# get a list of private metadata keys recently created.# note that this requires valid autnentication credentialslocal -a RECENT=( $(ots_recent) )
# check on the current state of a secret, given the private keyots_state $KEY
# burn a secret, given the private keyots_burn $KEYUsage Example as CLI
Section titled “Usage Example as CLI”# Share a secret (from stdin./ots shareSECRET^D
# Share a secret (via HEREDOC)./ots share <<-EOF This is a mulit-line secret via HEREDOC. Somthing else goes here.EOF
# Get/Retrieve a secret:./ots get <key|url>./ots retrieve <key|url>
# Burn a secret:$ ots burn flsdlaun6hwczqu9utmc0vts5xj9xu1flsdlaun6hwczqu9utmc0vts5xj9xu1