Dejafoo

Effortless cache for any API

Remotely cache expensive API calls. Great for tests, debugging, and sharing between dev and prod environments.

demo123.dejafoo.io

Use this random bucket key or anything you like.

Any method (GET, POST, PATCH, etc). Control freshness with ttl like 30s, 1m, 1h, 2d. Same request, same response — every time.

1
2
3
4
5
6
7
8
9
10
import requests

response = requests.post(
    "|",
    json={
        "q": "john@example.com",
        "api_key": "your_api_key"
    }
)
print(response.json())
Python 3.9requests
Ready