JSONPlaceholder · Schema
User
A sample user with profile, address, and company metadata in the JSONPlaceholder dataset.
DevelopmentTestingPrototypingFake APIOpen-SourceREST
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique user identifier (1-10). |
| name | string | Full display name of the user. |
| username | string | Username / handle. |
| string | Email address. | |
| phone | string | Phone number (free-form string). |
| website | string | Personal website (hostname or URL). |
| address | object | Street, city, postal code, and geo coordinates. |
| company | object | User's company affiliation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/jsonplaceholder/refs/heads/main/json-schema/jsonplaceholder-user-schema.json",
"title": "User",
"description": "A sample user with profile, address, and company metadata in the JSONPlaceholder dataset.",
"type": "object",
"required": ["id", "name", "username", "email"],
"properties": {
"id": {
"type": "integer",
"description": "Unique user identifier (1-10).",
"example": 1
},
"name": {
"type": "string",
"description": "Full display name of the user.",
"example": "Leanne Graham"
},
"username": {
"type": "string",
"description": "Username / handle.",
"example": "Bret"
},
"email": {
"type": "string",
"format": "email",
"description": "Email address.",
"example": "Sincere@april.biz"
},
"phone": {
"type": "string",
"description": "Phone number (free-form string).",
"example": "1-770-736-8031 x56442"
},
"website": {
"type": "string",
"description": "Personal website (hostname or URL).",
"example": "hildegard.org"
},
"address": {
"type": "object",
"description": "Street, city, postal code, and geo coordinates.",
"properties": {
"street": { "type": "string", "example": "Kulas Light" },
"suite": { "type": "string", "example": "Apt. 556" },
"city": { "type": "string", "example": "Gwenborough" },
"zipcode": { "type": "string", "example": "92998-3874" },
"geo": {
"type": "object",
"properties": {
"lat": { "type": "string", "example": "-37.3159" },
"lng": { "type": "string", "example": "81.1496" }
}
}
}
},
"company": {
"type": "object",
"description": "User's company affiliation.",
"properties": {
"name": { "type": "string", "example": "Romaguera-Crona" },
"catchPhrase": { "type": "string", "example": "Multi-layered client-server neural-net" },
"bs": { "type": "string", "example": "harness real-time e-markets" }
}
}
}
}
Work with this as data
Every JSON Schema 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 schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/jsonplaceholder-user"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.