Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api.docs.onlydrams.app/llms.txt

Use this file to discover all available pages before exploring further.

Returns an array of user settings.

Parameters

Supported categories are:
  • security
  • notifications
  • preferences

Returns

Returns a single list object, and returns an error otherwise.
  curl -H "Authorization: $ACCESS_TOKEN" \
    --request GET \
    --url https://api.onlydrams.app/api/v1/users/:user_id/settings/:category
[
	{
		"key": "public_collection",
		"value": "false",
		"data_type": "boolean",
		"options": []
	},
	{
		"key": "public_wishlist",
		"value": "true",
		"data_type": "boolean",
		"options": []
	},
	{
		"key": "public_favorites",
		"value": "true",
		"data_type": "boolean",
		"options": []
	}
]