Where to Find Image Links for Each Component?

This topic was automatically generated from Slack. You can find the original thread here.

Where can I get image links for each component?

To find image links for each component, you can explore the components/ directory of the PipedreamHQ/pipedream GitHub repository. This repository contains hundreds of example components, and you might find images or references to images within the component documentation or code comments. If you are looking for specific images related to Pipedream components, you might need to check the documentation or any associated resources linked within the component files themselves. For further assistance, you can visit the Pipedream support page for more support options.

Where can I get descriptions or images for specific integrations programatically I.e. the image and description for airtable_oauth appId is “**Airtable” and “**Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.”

To programmatically obtain descriptions or images for specific integrations like the Airtable OAuth app, you can use the Pipedream API. Here’s a general approach: 1. Access the Pipedream API: You can use the Pipedream API to fetch details about apps and integrations. This typically involves making a GET request to an endpoint that provides app details. 2. Example API Response: Based on the Pipedream documentation, here’s an example of how the response might look without account credentials: on { "data": { "id": "apn_WYhMlrz", "name": null, "external_id": "user-abc-123", "healthy": true, "dead": false, "app": { "id": "oa_aw4ib2", "name_slug": "airtable_oauth", "name": "Airtable", "auth_type": "oauth", "description": "Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.", "img_src": "https://assets.pipedream.net/s.v0/app_XBxhAl/logo/orig", "custom_fields_json": "[]", "categories": ["Productivity"] }, "created_at": "2024-08-01T04:04:03.000Z", "updated_at": "2024-08-01T04:04:03.000Z" } } 3. Extracting Information: From the response, you can extract the description and img_src fields for the app. For Airtable, the description is “Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.” and the image source is provided in the img_src field. 4. Using the Data: You can use this data to display information about the integration in your application or service. If you need more detailed instructions or a specific API endpoint, you should refer to the Pipedream documentation or contact their support for further assistance.