Learn the core concepts, authentication method, rate limits, and base URL for interacting with the Flumes Memory API.
/v1
) implemented in the repository /flumes
. Future versions may add additional endpoints and data stores. All examples in this section assume the default in-memory FAISS vector store unless otherwise noted.https://api.flumes.ai
. If you run the API locally the base URL is typically http://localhost:8000
.Authorization
header:
Authorization: Bearer <YOUR_API_KEY>
.FLUMES_RATE_LIMIT
environment variable on the server.Code | Meaning | Typical causes |
---|---|---|
400 | Bad Request | Missing required parameters, invalid JSON payload |
401 | Unauthorized | API key missing / revoked |
404 | Not Found | Memory id does not exist |
429 | Too Many Requests | Rate limit or monthly quota exceeded |
500 | Internal Server Error | Unhandled exception on the server |