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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/fake-store-api-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
openapi: 3.2.0
info:
title: Fake Store Auth Users API
description: Fake Store API exposes a sample REST API for e-commerce data including products, carts, users, and authentication. It is intended for prototyping, teaching, and integration testing — write operations return fabricated responses and do not persist data on the server.
version: 1.0.0
contact:
name: Fake Store API
url: https://fakestoreapi.com/
license:
name: MIT
servers:
- url: https://fakestoreapi.com
description: Production
tags:
- name: Users
description: User account operations.
paths:
/users:
get:
tags:
- Users
summary: List users
operationId: listUsers
parameters:
- $ref: '#/components/parameters/Limit'
- $ref: '#/components/parameters/Sort'
responses:
'200':
description: Array of users
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/User'
post:
tags:
- Users
summary: Create a user
operationId: createUser
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UserInput'
responses:
'200':
description: Created user (fabricated)
content:
application/json:
schema:
$ref: '#/components/schemas/User'
/users/{id}:
parameters:
- $ref: '#/components/parameters/UserId'
get:
tags:
- Users
summary: Get a user
operationId: getUser
responses:
'200':
description: User
content:
application/json:
schema:
$ref: '#/components/schemas/User'
put:
tags:
- Users
summary: Replace a user
operationId: replaceUser
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UserInput'
responses:
'200':
description: Updated user (fabricated)
content:
application/json:
schema:
$ref: '#/components/schemas/User'
patch:
tags:
- Users
summary: Partially update a user
operationId: updateUser
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UserInput'
responses:
'200':
description: Updated user (fabricated)
content:
application/json:
schema:
$ref: '#/components/schemas/User'
delete:
tags:
- Users
summary: Delete a user
operationId: deleteUser
responses:
'200':
description: Deleted user (fabricated)
content:
application/json:
schema:
$ref: '#/components/schemas/User'
components:
parameters:
UserId:
in: path
name: id
required: true
schema:
type: integer
description: User ID
Sort:
in: query
name: sort
schema:
type: string
enum:
- asc
- desc
description: Sort order for results
Limit:
in: query
name: limit
schema:
type: integer
minimum: 1
description: Maximum number of results to return
schemas:
User:
type: object
properties:
id:
type: integer
email:
type: string
format: email
username:
type: string
password:
type: string
name:
type: object
properties:
firstname:
type: string
lastname:
type: string
address:
type: object
properties:
city:
type: string
street:
type: string
number:
type: integer
zipcode:
type: string
geolocation:
type: object
properties:
lat:
type: string
long:
type: string
phone:
type: string
UserInput:
type: object
required:
- email
- username
- password
properties:
email:
type: string
format: email
username:
type: string
password:
type: string
name:
type: object
properties:
firstname:
type: string
lastname:
type: string
address:
type: object
properties:
city:
type: string
street:
type: string
number:
type: integer
zipcode:
type: string
geolocation:
type: object
properties:
lat:
type: string
long:
type: string
phone:
type: string