GET/api/stories
Public stories, newest first, filtered by customer, vendor or relationship event
- customerCustomer slug, e.g. medtronic
- vendorVendor slug, e.g. snowflake
- eventRelationship event
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://stories.fru.dev/api/stories?vendor=snowflake&limit=2"Sample response
JSON
{
"items": [
{
"id": 1,
"customer": "medtronic",
"vendor": "snowflake",
"products": [
"Snowflake"
],
"useCase": "Great Lakes program moving the enterprise data warehouse from on-premises systems to Snowflake",
"outcome": "",
"event": "migrated",
"fromVendor": "",
"fromLabel": "on-premises data warehouse",
"sourceKind": "customer_blog",
"sourceUrl": "https://www.snowflake.com/en/blog/medtronic-using-snowflake-for-digital-transformation/",
"sourceTitle": "How Medtronic is Using Snowflake for Digital Transformation",
"publisher": "snowflake.com",
"date": "2022-06-21"
},
{
"id": 24,
"customer": "siemens",
"vendor": "snowflake",
"products": [
"Snowflake"
],
"useCase": "Siemens Data Cloud: enterprise data mesh replacing an on-prem SAP HANA data lake",
"outcome": "600+ projects running across business divisions",
"event": "migrated",
"fromVendor": "sap",
"fromLabel": "on-premises SAP HANA data lake",
"sourceKind": "vendor_case_study",
"sourceUrl": "https://www.snowflake.com/en/customers/all-customers/case-study/siemens-1/",
"sourceTitle": "Siemens Builds an Enterprise-Wide Data Mesh Platform to Accelerate Innovation",
"publisher": "snowflake.com",
"date": ""
}
],
"limit": 2,
"offset": 0,
"next": "/api/stories?vendor=snowflake&limit=2&offset=2"
}