brands
brands
Browse 50 brands records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.
Overview
Cards
-
Beahan and Sons
Diverse systemic application
-
Jerde, O'Hara and Roberts
Polarised immersive function
-
Senger and Sons
Future-proofed high-level throughput
-
Kilback, O'Conner and Nikolaus
Polarised incremental toolset
-
Sanford and Sons
Stand-alone optimizing concept
-
Fay Group
Virtual motivating structure
-
Klein - Schroeder
Networked human-resource process improvement
-
Quigley, Moen and Renner
Devolved uniform initiative
-
Beatty and Sons
Expanded zero administration support
-
Hammes - Koelpin
Devolved responsive structure
-
Lynch, Welch and Casper
Business-focused systematic hierarchy
-
Beer - Cummings
Innovative client-driven protocol
-
Sawayn Inc
Networked responsive application
-
Lubowitz Inc
Stand-alone full-range architecture
-
Dare, Carroll and Willms
Open-source AI-powered capability
-
Gleichner Inc
Upgradable client-driven contingency
-
Kulas, Treutel and Zboncak
Face to face immersive monitoring
-
Kris, Ratke and Block
Quality-focused responsive implementation
-
Ortiz - Lesch
Devolved contextually-based implementation
-
Ward LLC
Customer-focused reciprocal middleware
-
Legros Inc
Implemented dedicated database
-
Stiedemann - Price
Customer-focused systematic support
-
Ryan, Price and O'Keefe
Team-oriented well-modulated microservice
-
Fay - Armstrong
Triple-buffered responsive policy
Compact
-
Beahan and Sons
-
Jerde, O'Hara and Roberts
-
Senger and Sons
-
Kilback, O'Conner and Nikolaus
-
Sanford and Sons
-
Fay Group
-
Klein - Schroeder
-
Quigley, Moen and Renner
-
Beatty and Sons
-
Hammes - Koelpin
-
Lynch, Welch and Casper
-
Beer - Cummings
-
Sawayn Inc
-
Lubowitz Inc
-
Dare, Carroll and Willms
-
Gleichner Inc
-
Kulas, Treutel and Zboncak
-
Kris, Ratke and Block
-
Ortiz - Lesch
-
Ward LLC
-
Legros Inc
-
Stiedemann - Price
-
Ryan, Price and O'Keefe
-
Fay - Armstrong
Detailed
Beahan and Sons
- Founded
- 2023
- Location
- PE
Diverse systemic application
Jerde, O'Hara and Roberts
- Founded
- 2003
- Location
- NL
Polarised immersive function
Senger and Sons
- Founded
- 1927
- Location
- PT
Future-proofed high-level throughput
Kilback, O'Conner and Nikolaus
- Founded
- 1931
- Location
- IE
Polarised incremental toolset
Sanford and Sons
- Founded
- 1979
- Location
- MX
Stand-alone optimizing concept
Fay Group
- Founded
- 1951
- Location
- FJ
Virtual motivating structure
Showing first 6 of 24 on this page.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/brands?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/brands?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/brands";
const res = await fetch(
"https://example-data.com/api/v1/brands?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Brand>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/brands",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1,
"name": "Beahan and Sons",
"slug": "beahan-and-sons-1",
"description": "Diverse systemic application",
"logoUrl": "https://picsum.photos/seed/brand-1/200/200",
"website": "https://example.com/brands/beahan-and-sons",
"foundedYear": 2023,
"headquartersCountryAlpha2": "PE",
"createdAt": "2023-02-04T09:57:54.220Z"
},
{
"id": 2,
"name": "Jerde, O'Hara and Roberts",
"slug": "jerde-o-hara-and-roberts-2",
"description": "Polarised immersive function",
"logoUrl": "https://picsum.photos/seed/brand-2/200/200",
"website": "https://example.com/brands/jerde-o-hara-and-roberts",
"foundedYear": 2003,
"headquartersCountryAlpha2": "NL",
"createdAt": "2017-07-02T17:15:50.414Z"
},
{
"id": 3,
"name": "Senger and Sons",
"slug": "senger-and-sons-3",
"description": "Future-proofed high-level throughput",
"logoUrl": "https://picsum.photos/seed/brand-3/200/200",
"website": null,
"foundedYear": 1927,
"headquartersCountryAlpha2": "PT",
"createdAt": "2021-08-03T15:27:27.485Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 50,
"totalPages": 2
},
"links": {
"self": "/api/v1/brands?page=1",
"first": "/api/v1/brands?page=1",
"last": "/api/v1/brands?page=2",
"next": "/api/v1/brands?page=2",
"prev": null
}
}