-
Notifications
You must be signed in to change notification settings - Fork 1
Search API Specification
μ΄μμ°¬ edited this page May 9, 2024
·
1 revision
κΈ°λ₯ | λ©μλ | URI | λΉκ³ |
---|---|---|---|
μ¬μ©μ κ²μ | GET | /users?q= | β |
μ’μμ μ¬μ©μ κ²μ | GET | /like?q= | β |
- μ°μ λͺ¨λ μ λ ₯μΌλ‘ μ§ν, μΆν μ°λ‘νλ§ / λλ°μ΄μ€ λμ κ°λ₯
interface Request {
uri: "/users?q=";
method: "GET"
query:{
q: string;
}
body: {};
}
interface Response {
code: "2000";
data:{
users: User[] // 0οΈβ£ User
}
}
interface Request {
uri: "/like?q=";
method: "GET"
query:{
q: string;
}
body: {};
}
interface Response {
code: "2000";
data:{
users: User[] // 0οΈβ£ User
}
}