Bowmark AIdocs

Alpha Vantage

alphavantage.co's own free-tier signup — issues a real, usable stock-data API key instantly, no email verification.

Domain: alphavantage.co

Also known as: Alpha Vantage, alphavantage.co, www.alphavantage.co, Alpha Vantage Stock API

Prefer the capability

bowmark.developer_api_key_signup covers this provider and routes around it when it is having a bad day. Reach for this page when you need alphavantage.co specifically.

Call it directly

bowmark.providers.alphavantage.signUp(details: { organization: string, email: string, occupation?: string }): Promise<AlphavantageSignUpResult>

Functions

FunctionWhat it does
signUpRuns alphavantage.co's real signup flow and returns a genuine, immediately usable free-tier stock-data API key — no email verification, no CAPTCHA.

Types

interface AlphavantageSignUpDetails {
  organization: string;
  email: string;
  occupation?: "Investor" | "Software Developer" | "Educator" | "Student" | "I am from the Trading Agents project on Github" | "Other";
}
interface AlphavantageSignUpResult {
  apiKey: string;
  message: string;
}

Examples

// email MUST be unique per call — alphavantage.co dedupes by address and
// rejects a repeat with "Redundant origin", so a literal copied example fails
const { apiKey } = await bowmark.providers.alphavantage.signUp({ organization: "Acme Corp", email: `acme-${Date.now()}@example.com` });
// apiKey -> "M5ZALSWXWMYDTW5C" — a real Alpha Vantage key, usable immediately
developer_api_key_signupDeveloper API key signup — the capability this provider backs.