Use the API with Bruno
You can import the Bytes Developer API into Bruno from the OpenAPI specification.
What you need
- A Bytes account
- A workspace API key
- Bruno installed locally
- The Bytes OpenAPI specification file or URL
https://developer.jaww.ws/openapi/bytes-developer-api.openapi.yaml
Import the API
- Open Bruno.
- Create or open a collection.
- Import an OpenAPI specification.
- Use the OpenAPI URL above, or download the YAML file from the OpenAPI page and import the file.
- Save the imported requests.
Add environment values
Create or update a Bruno environment with:
| Variable | Value |
|---|---|
base_url | https://api.jaww.ws/api/v1 |
bytes_api_key | Your workspace API key |
Set authentication
Use bearer token authentication with:
{{bytes_api_key}}
The request should include:
Authorization: Bearer {{bytes_api_key}}
Try a request
Start with:
GET {{base_url}}/tags
Then create a safe test link once authentication is working.
Working with files
Bruno stores collections as files. Be careful not to commit real API keys in environment files.
Add any local secret environment files to your own ignore rules if needed.