### Yaps API Endpoint and Usage Source: https://docs.kaito.ai/kaito-yaps-tokenized-attention/yaps-open-protocol Provides details on accessing Yaps data via the Kaito AI API. Includes the endpoint URL, required parameters (`user_id` or `username`), and a `curl` example for fetching a user's Yaps score. The response format is also shown. ```APIDOC Yaps API Endpoint: https://api.kaito.ai/api/v1/yaps Description: This endpoint returns the Yaps score of the given user. Parameters: Note: either of `user_id` or `username` must be specified. - `user_id` (optional, recommended): The 𝕏 account user id of the particular user you want to get Yaps data for. (Users can get 𝕏 user id via external tools) - `username` (optional): The 𝕏 account user handle of the particular user you want to get Yaps data for. Rate Limit: Default rate limit is 100 calls every 5 minutes. ``` ```bash curl -X GET 'https://api.kaito.ai/api/v1/yaps?username=VitalikButerin' ``` ```json { "user_id": "295218901", "username": "VitalikButerin", "yaps_all": 3569.71215890904, "yaps_l24h": 0, "yaps_l48h": 0, "yaps_l7d": 0, "yaps_l30d": 3569.71215890904, "yaps_l3m": 3569.71215890904, "yaps_l6m": 3569.71215890904, "yaps_l12m": 3569.71215890904 } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.