Get All Users API
이 API는 모든 사용자 정보를 가져오는 데 사용됩니다.
GET /users
없음
없음
없음
Content-Type: application/json
{
"users": [
{
"id": 1,
"name": "John Doe",
"email": "johndoe@example.com"
},
{
"id": 2,
"name": "Jane Smith",
"email": "janesmith@example.com"
}
]
}
GET /users
HTTP/1.1 200 OK
Content-Type: application/json
{
"users": [
{
"id": 1,
"name": "John Doe",
"email": "johndoe@example.com"
},
{
"id": 2,
"name": "Jane Smith",
"email": "janesmith@example.com"
}
]
}
이 API는 SSL/TLS를 통해 암호화된 연결을 사용합니다.
이 API는 인증이 필요하지 않습니다.
이 API는 1분당 최대 1000개의 요청을 허용합니다.
현재 버전: v1