curl https://api.pipedream.com/v1/components/my-component \
-H "Authorization: Bearer <token>"
{
"data": {
"id": "sc_JDi8EB",
"code": "component code here",
"code_hash": "685c7a680d055eaf505b08d5d814feef9fabd516d5960837d2e0838d3e1c9ed1",
"name": "rss",
"version": "0.0.1",
"configurable_props": [
{
"name": "url",
"type": "string",
"label": "Feed URL",
"description": "Enter the URL for any public RSS feed."
},
{
"name": "timer",
"type": "$.interface.timer",
"default": {
"intervalSeconds": 900
}
}
],
"created_at": 1588866900,
"updated_at": 1588866900
}
}
Retrieve a component saved or published in your account using its saved component ID or key.
This endpoint returns the component’s metadata and configurable props.
GET /components/{key|id}
or
curl https://api.pipedream.com/v1/components/my-component \
-H "Authorization: Bearer <token>"
{
"data": {
"id": "sc_JDi8EB",
"code": "component code here",
"code_hash": "685c7a680d055eaf505b08d5d814feef9fabd516d5960837d2e0838d3e1c9ed1",
"name": "rss",
"version": "0.0.1",
"configurable_props": [
{
"name": "url",
"type": "string",
"label": "Feed URL",
"description": "Enter the URL for any public RSS feed."
},
{
"name": "timer",
"type": "$.interface.timer",
"default": {
"intervalSeconds": 900
}
}
],
"created_at": 1588866900,
"updated_at": 1588866900
}
}
Was this page helpful?
curl https://api.pipedream.com/v1/components/my-component \
-H "Authorization: Bearer <token>"
{
"data": {
"id": "sc_JDi8EB",
"code": "component code here",
"code_hash": "685c7a680d055eaf505b08d5d814feef9fabd516d5960837d2e0838d3e1c9ed1",
"name": "rss",
"version": "0.0.1",
"configurable_props": [
{
"name": "url",
"type": "string",
"label": "Feed URL",
"description": "Enter the URL for any public RSS feed."
},
{
"name": "timer",
"type": "$.interface.timer",
"default": {
"intervalSeconds": 900
}
}
],
"created_at": 1588866900,
"updated_at": 1588866900
}
}