# Auth

인증 관련 API

## 로그인

> Privy 토큰을 사용하여 로그인합니다

```json
{"openapi":"3.0.0","info":{"title":"Tikkly B2C API","version":"0.0.1"},"tags":[{"name":"Auth","description":"인증 관련 API"}],"servers":[{"url":"https://api-b2c.tikkly.io","description":"Development Server (Active)"},{"url":"https://api.tikkly.com","description":"Production Server"},{"url":"http://localhost:8081","description":"Local Development Server"}],"paths":{"/tikkly-b2c/auth/sign-in":{"post":{"tags":["Auth"],"summary":"로그인","description":"Privy 토큰을 사용하여 로그인합니다","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["privyAccessToken","privyIdToken"],"properties":{"privyAccessToken":{"type":"string","description":"Privy Access Token"},"privyIdToken":{"type":"string","description":"Privy ID Token"}}}}}},"responses":{"200":{"description":"로그인 성공","content":{"application/json":{"schema":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"},"data":{"type":"object","properties":{"status":{"type":"string","enum":["EXISTING","USER_CREATED"]},"accessToken":{"type":"string"},"uuid":{"type":"string"}}}}}}}},"400":{"description":"잘못된 요청"},"401":{"description":"인증 실패"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guide.tikkly.io/auth.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
