Sawayn Inc
- Founded
- 2020
- Location
- PH
Networked responsive application
Overview
brands / #13
Networked responsive application
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/brands/13" ); const brand = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/brands.d.ts https://example-data.com/types/brands.d.ts
import type { Brand } from "./types/brands";
const res = await fetch(
"https://example-data.com/api/v1/brands/13"
);
const brand = (await res.json()) as Brand; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands/13"
)
brand = res.json() Response
{
"id": 13,
"name": "Sawayn Inc",
"slug": "sawayn-inc-13",
"description": "Networked responsive application",
"logoUrl": "https://picsum.photos/seed/brand-13/200/200",
"website": "https://example.com/brands/sawayn-inc",
"foundedYear": 2020,
"headquartersCountryAlpha2": "PH",
"createdAt": "2019-04-20T00:21:27.100Z"
}