← Tools Reference

JSONBin.io

JSONBin.io integration (Storage, Developer Tools). Imported from open-connector.

API key4 toolshttps://api.jsonbin.io/v3
POST
jsonbin_create_bin
Create a JSONBin bin from a JSON object and return the stored record plus bin metadata.

/b

4 parameters
ParamTypeRequiredDescription
recordobjectrequiredThe JSON object stored in the bin. JSONBin bins store object records.
namestringoptionalOptional bin name sent with the X-Bin-Name header.
collectionIdstringoptionalOptional collection id sent with the X-Collection-Id header.
privatebooleanoptionalWhether the bin should be private.
GET
jsonbin_read_bin
Read the latest or a specific version of a JSONBin bin.

/b/{binId}

2 parameters
ParamTypeRequiredDescription
binIdstringrequiredThe JSONBin bin identifier.
versionstringoptionalOptional JSONBin version identifier to read.
PUT
jsonbin_update_bin
Replace the JSON object stored in a JSONBin bin and return the updated record plus bin metadata.

/b/{binId}

3 parameters
ParamTypeRequiredDescription
binIdstringrequiredThe JSONBin bin identifier.
recordobjectrequiredThe JSON object stored in the bin. JSONBin bins store object records.
versioningbooleanoptionalWhether JSONBin should create a new version for this update.
DELETE
jsonbin_delete_bin
Delete a JSONBin bin and return the deletion metadata returned by JSONBin.

/b/{binId}

1 parameter
ParamTypeRequiredDescription
binIdstringrequiredThe JSONBin bin identifier.