# dweet.io **Provider:** dweet.io **Category:** social **Base URL:** `https://dweet.io/` **Auth:** none — `# No auth required` **Rate Limit:** See documentation **Free Tier:** Yes — available **Pricing:** Enterprise / contact sales (subscription) **Docs:** https://dweet.io/ ## Description Dweet.io allows users to share data from mobile, tablets, and pcs, and them to other devices and accounts across social media platforms. Dweet.io provides an API to access the different functionality of the Dweet.io service. Users can make REST calls to read and create dweets, lock and unlock things ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://dweet.io//alert/{who}/when/{thing}/{condition}` | Create an alert for a thing. A thing must be locked before an alert can be set. | | POST | `https://dweet.io//dweet/for/{thing}` | Create a dweet for a thing. | | POST | `https://dweet.io//dweet/quietly/for/{thing}` | Create a dweet for a thing. This method differs from /dweet/for/{thing} only in that successful dweets result in an HTTP 204 response rather than the typical verbose response. | | GET | `https://dweet.io//get/alert/for/{thing}` | Get the alert attached to a thing. | | GET | `https://dweet.io//get/dweets/for/{thing}` | Read the last 5 cached dweets for a thing. | | GET | `https://dweet.io//get/latest/dweet/for/{thing}` | Read the latest dweet for a thing. | | GET | `https://dweet.io//get/stored/alerts/for/{thing}` | Read all the saved alerts for a thing from long term storage. You can query a maximum of 1 day per request and a granularly of 1 hour. | | GET | `https://dweet.io//get/stored/dweets/for/{thing}` | Read all the saved dweets for a thing from long term storage. You can query a maximum of 1 day per request and a granularly of 1 hour. | ## Authentication No authentication required ``` # No auth required ``` ## Sample Request ```bash curl -X GET 'https://dweet.io//alert/{who}/when/{thing}/{condition}' \ -H '# No auth required' ``` ## Sample Response ```json {} ``` ## Pricing Details Free — open public API, no authentication required. --- *Source: [API Map](https://apimap.dev/apis/dweet-io/) — CC BY 4.0*