Artificial Intelligence
Development of machine learning models and AI-powered applications.
Overview
industries / #9
Development of machine learning models and AI-powered applications.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/industries/9" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/industries/9" ); 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/9"
);
const industry = (await res.json()) as Industry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/industries/9"
)
industrie = res.json() Response
{
"id": 9,
"name": "Artificial Intelligence",
"slug": "artificial-intelligence",
"sector": "Technology",
"description": "Development of machine learning models and AI-powered applications."
}