← Tools Reference

Adafruit IO

Adafruit IO integration (Data, Developer Tools). Imported from open-connector.

API key4 toolshttps://io.adafruit.com/api/v2
GET
adafruit_io_get_current_user
Get the current Adafruit IO user for the connected API key.

/user

GET
adafruit_io_list_feeds
List Adafruit IO feeds for a username.

/{username}/feeds

1 parameter
ParamTypeRequiredDescription
usernamestringrequiredThe Adafruit IO username. Defaults to the connected account username.
GET
adafruit_io_get_feed
Get one Adafruit IO feed by feed key.

/{username}/feeds/{feedKey}

2 parameters
ParamTypeRequiredDescription
usernamestringrequiredThe Adafruit IO username. Defaults to the connected account username.
feedKeystringrequiredThe Adafruit IO feed key.
GET
adafruit_io_list_feed_data
List data points for an Adafruit IO feed.

/{username}/feeds/{feedKey}/data

6 parameters
ParamTypeRequiredDescription
usernamestringrequiredThe Adafruit IO username. Defaults to the connected account username.
feedKeystringrequiredThe Adafruit IO feed key.
startTimestringoptionalReturn records created after this timestamp.
endTimestringoptionalReturn records created before this timestamp.
limitintegeroptionalThe maximum number of data records to return.
includearrayoptionalThe data fields to include in each returned record.