Skip to content
View cipherc09-blip's full-sized avatar

Block or report cipherc09-blip

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
cipherc09-blip/README.md
thredly

Hi, I'm Cipher

Building thredly.dev — Threads & Instagram data infrastructure at scale

Website Twitter Follow GitHub followers

What I'm Building

thredly — a professional-grade Threads & Instagram data API built for researchers, analysts, and developers who need reliable social data at scale.

  • Auto session management with zero-maintenance cookie rotation
  • 15+ endpoints covering users, posts, search, and analytics
  • TypeScript SDK for easy integration
  • Deployed globally on Cloudflare Workers — sub-500ms P95 latency

Quick Look

import { ThredlyClient } from 'threads-api-client';

const client = new ThredlyClient({ apiKey: 'your-api-key' });

// Get a user profile
const user = await client.users.getInfo('zuck');

// Fetch their posts (paginated)
const posts = await client.users.getPosts(user.userId, { limit: 20 });

// Search Threads
const results = await client.search.top('AI research');

Get started at thredly.dev →

Tech Stack

TypeScript Cloudflare Workers GraphQL Node.js

GitHub Stats


Pinned Loading

  1. threads-connect threads-connect Public

    GraphQL proxy API for Threads & Instagram data at scale — auto session management, TypeScript SDK, Cloudflare Workers

    1

  2. awesome-threads-data awesome-threads-data Public

    A curated list of Threads & Instagram API tools, research, and datasets

    1

  3. threads-api-client threads-api-client Public

    Official TypeScript/JavaScript SDK for thredly — Threads & Instagram data API

    TypeScript

  4. thredly-examples thredly-examples Public

    Code examples for thredly — Threads & Instagram data API

    Python