All API tools
Encoding & Crypto
Caesar Cipher API
GET
/v1/caesar-cipher Free tier1 credit / callAuthentication
Send your API key as a bearer token. Create one free in the dashboard.
Authorization: Bearer $TOOLSXPO_KEYParameters
Passed as query-string parameters. Example values shown.
| Name | Example |
|---|---|
| text | hello |
| shift | 3 |
| mode | encrypt |
| caseSensitive | true |
| preservePunctuation | true |
Example request
curl "https://api.toolsxpo.com/v1/caesar-cipher?text=hello&shift=3&mode=encrypt&caseSensitive=true&preservePunctuation=true" \
-H "Authorization: Bearer $TOOLSXPO_KEY"Response
A standard JSON envelope: { ok, data, meta }. The result is in data (text); meta.credits reports what the call cost.