Overview
This node integrates with the Gyazo API to retrieve images stored on a Gyazo account. Specifically, the Image - Get operation fetches metadata and details about a single image by its unique identifier or by providing a valid Gyazo URL.
Common scenarios where this node is useful include:
- Retrieving detailed information about a specific image for further processing or display.
- Automating workflows that require fetching image metadata from Gyazo based on user input or other triggers.
- Integrating Gyazo-hosted images into other systems by obtaining their data programmatically.
For example, you might use this node to get an image's metadata after a user uploads it elsewhere, or to verify image details before performing additional operations like sharing or archiving.
Properties
| Name | Meaning |
|---|---|
| Image | The Gyazo image to retrieve. You can specify the image either: |
- By ID: Provide the 32-character hexadecimal image ID (e.g., ab1234cd5678ef9012ab3456cd7890ef). |
|
- By URL: Provide the full Gyazo URL of the image (e.g., https://gyazo.com/ab1234cd5678ef9012ab3456cd7890ef). The node extracts the image ID automatically from the URL. |
Output
The node outputs a JSON object containing the image metadata as returned by the Gyazo API. This typically includes fields such as:
- Image ID
- URL(s) to the image in various sizes or formats
- Upload timestamp
- Title or description if available
- Other metadata related to the image
No binary data output is produced by this operation; it strictly returns JSON metadata about the requested image.
Dependencies
- Requires an API key credential for authenticating requests to the Gyazo API.
- The node uses the official Gyazo API endpoints (
https://api.gyazo.com/api/images/{image_id}). - No additional external dependencies are needed beyond the configured API authentication.
Troubleshooting
- Invalid Image ID format: If the provided image ID does not match the expected 32-character hexadecimal format, the node will throw an error. Ensure the ID is correct and properly formatted.
- Invalid Gyazo URL format: When specifying the image by URL, the URL must exactly match the pattern
https://gyazo.com/{32-char-id}. Any deviation will cause an error. - Image not found or access denied: If the image ID or URL is valid but the image does not exist or your API key lacks permission, the API will return an error. Verify the image exists and your credentials have appropriate access.
- Network or authentication errors: Ensure your API key is valid and the network connection to the Gyazo API is stable.