Lobsters Users API

Lobsters user profiles

Operations 1

GET /~{username}.json Get a user profile #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lobsters-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lobsters-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lobsters Comments Users API
  description: The Lobsters public API provides read access to stories, comments, tags, and user profiles from the technology-focused link aggregation community. Endpoints return JSON and are available without authentication for public data. Stories can be retrieved by hottest or newest ranking, filtered by tag, and paginated by page number.
  version: 1.0.0
  contact:
    url: https://lobste.rs/about
  license:
    name: BSD 3-Clause
    url: https://github.com/lobsters/lobsters/blob/main/LICENSE
servers:
- url: https://lobste.rs
  description: Lobsters production server
tags:
- name: Users
  description: Lobsters user profiles
paths:
  /~{username}.json:
    get:
      operationId: getUser
      summary: Get a user profile
      description: Returns a user's public profile including karma, about text, avatar, and invitation lineage.
      tags:
      - Users
      parameters:
      - name: username
        in: path
        description: Lobsters username
        required: true
        schema:
          type: string
      responses:
        '200':
          description: User profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '404':
          description: User not found
components:
  schemas:
    User:
      type: object
      description: A Lobsters community member's public profile
      properties:
        username:
          type: string
          description: Unique username for the account
          example: alice
        created_at:
          type: string
          format: date-time
          description: ISO 8601 timestamp when the account was created
        is_admin:
          type: boolean
          description: Whether the user has administrator privileges
        is_moderator:
          type: boolean
          description: Whether the user has moderator privileges
        karma:
          type: integer
          description: Karma score derived from story and comment votes (omitted for admins)
        homepage:
          type: string
          format: uri
          nullable: true
          description: User's personal homepage URL
        about:
          type: string
          description: HTML-rendered about/bio text
        avatar_url:
          type: string
          format: uri
          description: URL of the user's avatar image
        invited_by_user:
          type: string
          nullable: true
          description: Username of the user who sent the invitation; null for founding members
        github_username:
          type: string
          nullable: true
          description: GitHub username if linked (omitted when not set)
        mastodon_username:
          type: string
          nullable: true
          description: Mastodon handle if linked (omitted when not set)
      required:
      - username
      - created_at
      - is_admin
      - is_moderator
      - homepage
      - about
      - avatar_url