No access

Locked

0 held10,000 needed

Requests

0

Last never

Inference used

$0.00

Paid by the treasury, not by you

Hold at least 10,000 $RENTAPI in this wallet to run every model in the catalogue, as much as you like.

API keys

0 active
Connect a wallet to create keys. Keys identify the wallet asking; the holding is what grants access.

No keys yet. A key is how your own code tells the API which wallet is asking. You do not need one to use the chat on this site, which proves the wallet with a signature instead.

Recent requests

Nothing yet. Requests show up here the moment they settle, including anything you run from a model page.

Use it from your own code

Any client that speaks the OpenAI protocol works. Change the base URL and the key, and nothing else. The same wallet, the same access, no balance to watch.

from openai import OpenAI

client = OpenAI(
    base_url="https://rentapi.org/v1",
    api_key=os.environ["API_TOKEN_KEY"],
)

stream = client.chat.completions.create(
    model="anthropic/claude-opus-5",
    messages=[{"role": "user", "content": "Hello"}],
    stream=True,
)

for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")