惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
爱范儿
爱范儿
Jina AI
Jina AI
博客园 - Franky
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
M
MIT News - Artificial intelligence
aimingoo的专栏
aimingoo的专栏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
腾讯CDC
博客园_首页
月光博客
月光博客
有赞技术团队
有赞技术团队
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Got Tired of Paying $99/mo for Options Data — So I Buil...
Salomon · 2026-06-21 · via DEV Community

Salomon

I build algorithmic trading bots as a side project. Nothing fancy — just small strategies that trade US equity options automatically.

The problem I kept running into wasn't the strategy logic. It was the data.

Every time I wanted to pull real-time options chains, Greeks, or IV, I had two options:

  • Pay $99+/mo to a data provider
  • Scrape something I probably shouldn't be scraping

Neither felt right for a hobbyist project. So I built Market-Options — a simple REST API for US equity options data at $20/mo.


What It Does

It's a plain REST API. No SDK, no special client library — just HTTP requests and JSON responses.

It covers four endpoints:

  • chain — full options chain for a given underlying
  • contract — data for a single contract
  • contracts — batch lookup across multiple contracts
  • contract-overview — Greeks, IV, expiration details

Coverage is the top 100 US equity underlyings, which accounts for roughly 95% of actual US options volume. If you're building a bot that trades SPY, QQQ, AAPL, TSLA, or anything in that tier — it's covered.


Why Only 100 Underlyings?

Because that's what most people actually trade.

When I looked at my own bots, and at what most retail algo traders focus on, the top 100 covers everything practical. Exotic underlyings with low volume are also harder to get real data on reliably — so rather than promise coverage I can't deliver, I focused on doing the core well.


A Simple Example

curl "https://api.market-option.com/chain?symbol=SPY&expiration=2025-01-17" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response is clean JSON:

{
  "symbol": "SPY",
  "expiration": "2025-01-17",
  "options": [
    {
      "strike": 480,
      "type": "call",
      "bid": 3.45,
      "ask": 3.50,
      "iv": 0.182,
      "delta": 0.42,
      "gamma": 0.031,
      "theta": -0.18,
      "vega": 0.29
    }
  ]
}

No parsing headaches, no weird date formats.


Pricing

  • Free tier: 1,000 credits/day — enough to test and build
  • Pro: $20/mo, unlimited within fair use
  • Trial: New accounts get 7 days of Pro, no credit card required

Who It's For

Honestly, it's for people like me — developers who want to build something real with options data without a $99+/mo commitment before they've even proven the strategy works.

If you're building a bot, backtesting a strategy, or just exploring options pricing programmatically, give it a try.

market-option.com


Would love feedback — what endpoints or data points are missing that would make this useful for your use case?