E-Commerce
Online retail platforms enabling buying and selling of goods and services.
Overview
industries / #10
Online retail platforms enabling buying and selling of goods and services.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/industries/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/industries/10" ); const industry = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/industries.d.ts https://example-data.com/types/industries.d.ts
import type { Industry } from "./types/industries";
const res = await fetch(
"https://example-data.com/api/v1/industries/10"
);
const industry = (await res.json()) as Industry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/industries/10"
)
industrie = res.json() Response
{
"id": 10,
"name": "E-Commerce",
"slug": "e-commerce",
"sector": "Technology",
"description": "Online retail platforms enabling buying and selling of goods and services."
}