h Hack Club AI

Free AI APIs for Hack Clubbers.

Every model on OpenRouter, plus image generation, embeddings, web search and OCR, behind one OpenAI-compatible API. No credit card.

from openai import OpenAI

client = OpenAI(
    base_url="https://ai.hackclub.com/proxy/v1",
    api_key="sk-hc-v1-...",
)

reply = client.chat.completions.create(
    model="openai/gpt-4o-mini",
    messages=[{"role": "user", "content": "Hi!"}],
)
print(reply.choices[0].message.content)

What you get

Language models
Every model OpenRouter lists, from frontier models to small open ones.
Images and embeddings
Generate images and embed text through the same endpoint.
Web search
Search the web, read pages and get cited answers with Exa.
OCR
Turn PDFs and images into Markdown with Mistral OCR.
Replicate
Run speech, music, video and image models. In beta.
Usage dashboard
See every request, token and cent, and inspect what was sent.

Get started in a minute

  1. 1 Sign in with your Hack Club account.
  2. 2 Create an API key.
  3. 3 Point any OpenAI SDK at the base URL.