Last updated 2 days ago
Was this helpful?
Get a plugin by id
/engine/{id}
curl -L \ --request POST \ --url 'https://api.bytenite.com/v1/dev/engine/{id}' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{}'
{ "plugin": { "id": "text", "owner": "text", "createdAt": "2025-03-12T00:31:56.117Z", "updatedAt": "2025-03-12T00:31:56.117Z", "name": "text", "version": { "major": 1, "minor": 0, "tag": 0 }, "description": "text", "type": "text" } }
List all plugins created by the user
/engine
Results per page
The number of items to skip before starting to collect the result set
curl -L \ --url 'https://api.bytenite.com/v1/dev/engine' \ --header 'Authorization: YOUR_API_KEY'
{ "plugins": [ { "id": "text", "owner": "text", "createdAt": "2025-03-12T00:31:56.117Z", "updatedAt": "2025-03-12T00:31:56.117Z", "name": "text", "version": { "major": 1, "minor": 0, "tag": 0 }, "description": "text", "type": "text" } ] }