Discover/Latent API
live

Latent APIlatent.space

Access Latent Space podcast episodes, newsletters, full transcripts, and search across all posts via 5 structured API endpoints.

Endpoint health
verified 3d ago
search_posts
get_homepage_data
get_transcript
list_posts
get_post
5/5 passing latest checkself-healing
Endpoints
5
Updated
18d ago

What is the Latent API?

The Latent Space API provides 5 endpoints covering the full content catalog of the Latent Space AI engineering publication — including podcast episodes, newsletters, and timestamped transcripts. The get_transcript endpoint returns word-level timing and speaker labels for podcast episodes, while search_posts lets you query across all content by keyword. Each post detail includes body HTML, metadata, and reaction counts.

Try it
Sort order for results.
Content type filter. Known working value: 'podcast'. The upstream API may reject some type/sort combinations.
Maximum number of results per page.
Number of items to skip for pagination.
api.parse.bot/scraper/521547f0-2179-4187-b87e-57eae46029c7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/521547f0-2179-4187-b87e-57eae46029c7/list_posts?sort=top&type=podcast&limit=5&offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace latent-space-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Latent Space SDK — browse posts, search, fetch transcripts, homepage."""
from parse_apis.latent_space_api import LatentSpace, Sort, Type, TranscriptNotFound

client = LatentSpace()

# List newest posts, capped at 5 total items
for post in client.posts.list(sort=Sort.NEW, limit=5):
    print(post.title, post.slug, post.reaction_count)

# Search for posts about "transformers", sorted by popularity
result = client.posts.search(query="transformers", sort=Sort.TOP, limit=1).first()
if result:
    print(result.title, result.post_date, result.canonical_url)

# Get full post details by slug
episode = client.posts.get(slug="andon")
print(episode.title, episode.subtitle, episode.podcast_duration)

# Fetch transcript for a podcast episode — handle missing transcripts
try:
    transcript = episode.transcript()
    for segment in transcript.transcript[:3]:
        print(segment.start, segment.end, segment.text, segment.speaker)
except TranscriptNotFound as exc:
    print(f"No transcript for: {exc.slug}")

# Get homepage featured content
homepage = client.homepages.get()
for post in homepage.newPosts[:3]:
    print(post.title, post.slug)

print("exercised: posts.list / posts.search / posts.get / post.transcript / homepages.get")
All endpoints · 5 totalmissing one? ·

Fetch a paginated list of posts from the Latent Space archive. Returns post summaries sorted by date or popularity. Supports filtering by content type (e.g. 'podcast'). Paginate via offset; each page returns up to `limit` items.

Input
ParamTypeDescription
sortstringSort order for results.
typestringContent type filter. Known working value: 'podcast'. The upstream API may reject some type/sort combinations.
limitintegerMaximum number of results per page.
offsetintegerNumber of items to skip for pagination.
Response
{
  "type": "object",
  "fields": {
    "items": "array of post summary objects"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": 200799194,
          "slug": "bad-envs",
          "type": "newsletter",
          "title": "How to Stop Shipping Low-Quality RL Environments (with Examples)",
          "subtitle": "Your broken harness is actively making the model worse.",
          "post_date": "2026-06-05T18:49:40.461Z",
          "cover_image": "https://substackcdn.com/image/fetch/...",
          "canonical_url": "https://www.latent.space/p/bad-envs",
          "reaction_count": 59
        }
      ]
    },
    "status": "success"
  }
}

About the Latent API

Content Browsing and Search

The list_posts endpoint returns a paginated array of post summaries from the Latent Space archive. You can sort by date or popularity and filter by content type — the known working value for type is 'podcast'. Pagination is controlled via limit and offset parameters. The search_posts endpoint accepts a required query string and the same sort, limit, and offset parameters, returning matching post summaries. When offset exceeds the available results, the endpoint returns an empty array rather than an error.

Post Details and Transcripts

The get_post endpoint fetches a full post by its slug (obtained from list_posts or search_posts). The response includes id, title, slug, type, body_html, subtitle, post_date, canonical_url, reactions, and complete metadata. For podcast episodes, upload information is also present in the response.

The get_transcript endpoint returns the full timestamped transcript for a given podcast slug. Each segment in the transcript array carries start and end timestamps, text, word-level timing data, and speaker labels. If no transcript exists for a given slug, the endpoint returns a stale_input response with kind: 'input_not_found' rather than a blank or error.

Homepage Data

The get_homepage_data endpoint takes no parameters and returns the current homepage layout, including homeHeroPins, newPosts, topPosts, pinnedPosts, recommendations, and contentBlockData. This is useful for discovering the most recent and featured content without needing to paginate through the full archive.

Reliability & maintenanceVerified

The Latent API is a managed, monitored endpoint for latent.space — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when latent.space changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official latent.space API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a searchable index of AI engineering topics using search_posts with keyword queries.
  • Extract speaker-attributed dialogue from podcast episodes via get_transcript for NLP pipelines.
  • Sync a local content mirror using list_posts with date sorting and incremental offset pagination.
  • Pull full post body HTML from get_post to feed a summarization or embedding pipeline.
  • Track featured and trending content changes over time by polling get_homepage_data.
  • Filter the archive for podcast-only content using list_posts with type: 'podcast'.
  • Build a citation tool that resolves post slugs to canonical_url and metadata via get_post.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Latent Space have an official developer API?+
Latent Space does not publish an official public developer API. The publication is hosted on Substack, which offers a limited public RSS feed but no documented API for structured post or transcript data.
What does `get_transcript` return, and when does it fail?+
get_transcript returns a data object with post_id, slug, title, and a transcript array. Each segment includes start/end timestamps, text, word-level timing, and speaker labels. Not every post has a transcript — when none is available, the endpoint returns stale_input with kind: 'input_not_found' instead of a null body or HTTP error.
Are there any known quirks with `list_posts` filtering?+
Yes. The type filter has one documented working value: 'podcast'. Some combinations of type and sort parameters may be rejected by the upstream source. Test parameter combinations before assuming a given filter works at scale.
Does the API expose individual newsletter subscriber counts or author profile data?+
Not currently. The API covers post content, metadata, reactions, transcripts, and homepage layout data. It does not expose subscriber counts, author bios, or per-author post listings. You can fork this API on Parse and revise it to add an endpoint targeting author or subscriber data if those fields become accessible.
Can I retrieve comments or discussion threads for a post?+
Not currently. The get_post endpoint returns reactions but does not include comment threads or reply data. You can fork this API on Parse and revise it to add a comments endpoint if that data is needed.
Page content last updated . Spec covers 5 endpoints from latent.space.
Related APIs in News MediaSee all →
payloadspace.com API
Search and retrieve space industry news articles, company information, funding rounds, contract awards, and events from Payload Space's comprehensive database. Stay updated on latest developments across commercial space, military space, European space news, and industry events like webinars and podcasts.
anything.com API
Retrieve blog posts and organize them by category from Anything.com's AI app builder platform. Use this to access detailed content about AI development, tutorials, and platform updates directly from their official blog.
insights.trendforce.com API
Access semiconductor and AI industry analysis articles from TrendForce Insights, browsing post listings and retrieving full article content organized into text sections and figures. Perfect for staying updated on tech industry trends and feeding structured article data into language models for analysis.
thelayoff.com API
Monitor and search forum discussions about company layoffs, accessing post titles, content, author information, dates, and community reactions across TheLayoff.com. Browse through paginated results and dive into individual posts to read full reply threads and conversation details.
peerspace.com API
Search and explore Peerspace venue listings by location and activity type. Retrieve paginated search results with pricing, ratings, capacity, and amenities, then fetch full listing details including equipment, host information, and availability.
reddit.com API
Search Reddit posts and comments across any subreddit. Retrieve post discussions with full comment threads, search by keyword, and browse subreddit feeds by category (hot, new, top, rising) with flexible sorting and pagination.
threads.com API
Search for posts and users on Threads by keyword to discover content, view engagement metrics like likes and replies, and explore user profiles with their media. Find trending discussions and connect with creators all in one search experience.
cryptopanic.com API
Access real-time cryptocurrency market sentiment data from CryptoPanic. Retrieve news posts filtered by bullish or bearish sentiment, browse the full news feed with flexible filters, and fetch an aggregated sentiment score derived from 24-hour price movements across top cryptocurrencies.