Replit Users API

The Users API from Replit — 3 operation(s) for users.

Operations 3

GET /user Get Current User #
GET /users/{username} Get a User #
GET /users/{username}/repls List User Repls #

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/replit-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

replit-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Replit Deployments Users API
  description: Replit is a cloud-based development platform that lets you create, run, and deploy software directly from your browser. The Replit API provides programmatic access to manage Repls, deployments, and platform resources. Use the API to automate workflows, integrate Replit into CI/CD pipelines, and manage your development environment at scale.
  version: 1.0.0
  contact:
    url: https://replit.com/support
  termsOfService: https://replit.com/site/terms
servers:
- url: https://replit.com/api/v1
  description: Replit REST API v1
security:
- bearerAuth: []
tags:
- name: Users
paths:
  /user:
    get:
      operationId: user.get
      summary: Get Current User
      description: Get information about the authenticated user.
      tags:
      - Users
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '401':
          description: Unauthorized
  /users/{username}:
    get:
      operationId: users.get
      summary: Get a User
      description: Get public profile information for a user.
      tags:
      - Users
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
        description: The user's username.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '404':
          description: Not Found
  /users/{username}/repls:
    get:
      operationId: users.repls.list
      summary: List User Repls
      description: List all public Repls for a given user.
      tags:
      - Users
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
        description: The user's username.
      - name: limit
        in: query
        schema:
          type: integer
          default: 20
        description: Number of results per page.
      - name: cursor
        in: query
        schema:
          type: string
        description: Pagination cursor.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/Repl'
                  nextCursor:
                    type: string
                    nullable: true
components:
  schemas:
    Repl:
      type: object
      description: A Repl is an online coding environment on Replit.
      properties:
        id:
          type: string
          description: Unique identifier for the Repl.
        slug:
          type: string
          description: URL-friendly identifier for the Repl.
        title:
          type: string
          description: Display name of the Repl.
        description:
          type: string
          description: Description of what the Repl does.
        language:
          type: string
          description: Primary programming language of the Repl.
        isPrivate:
          type: boolean
          description: Whether the Repl is private.
        url:
          type: string
          format: uri
          description: URL to the Repl on Replit.
        createdAt:
          type: string
          format: date-time
          description: When the Repl was created.
        updatedAt:
          type: string
          format: date-time
          description: When the Repl was last updated.
        owner:
          $ref: '#/components/schemas/User'
      required:
      - id
      - slug
      - title
    User:
      type: object
      description: A Replit user or organization.
      properties:
        id:
          type: integer
          description: Numeric user ID.
        username:
          type: string
          description: User's username.
        displayName:
          type: string
          description: User's display name.
        bio:
          type: string
          description: User bio.
        url:
          type: string
          format: uri
          description: URL to the user's Replit profile.
        isVerified:
          type: boolean
          description: Whether the user's account is verified.
      required:
      - id
      - username
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Token from https://replit.com/account#api-tokens
externalDocs:
  description: Replit API Documentation
  url: https://docs.replit.com/api