As work happens
See what your app sends.
Each memory reports its status, so your app knows when search can find it. The developer console shows every request with its status, timing and cost, next to your keys, spend caps and usage.
Request logFryri for developers
Give your app a library it can work with. Add files and notes, retrieve what matters, and ask questions with sources.
Usage-based billing through your prepaid balance.
# Add a memory for one of your users
curl https://api.fryri.com/v1/memories \
-H "Authorization: Bearer $FRYRI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "Project Atlas uses Python and FastAPI.",
"title": "Project notes",
"end_user_id": "user_42"
}'
# Find it again, usually searchable within seconds
curl https://api.fryri.com/v1/search \
-H "Authorization: Bearer $FRYRI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"query": "What does Atlas run on?",
"end_user_id": "user_42"
}'ADD → SEARCH → ANSWER
The building blocks
Start with one endpoint. Connect the pieces your product needs as you go.
Turn notes, documents and conversations into memories, from PDFs and Word files to Markdown and code.
POST /v1/memoriesFind the memories that match, by meaning and by exact words.
POST /v1/searchGet an answer from the library, with the sources it used.
POST /v1/answerRead the text of a memory in parts, and download its original file.
GET /v1/memories/{id}Context with boundaries
Pass an end_user_id to scope any call to that user's library. Your account owns the keys and pays for usage.
user_01Own libraryuser_02Own libraryuser_03Own libraryAs work happens
Each memory reports its status, so your app knows when search can find it. The developer console shows every request with its status, timing and cost, next to your keys, spend caps and usage.
Request logWhen you need more
PDFs, Word, PowerPoint and Excel files, Markdown and source code are memories too. Search results point to the matching lines in a document, and answers return cited source lines and conversation turns.
Explore the API referenceBuild something with context