The Linkai Digital public content API
Everything Linkai Digital publishes about itself is available as JSON: who we are, what we sell, who we sell it to, and what it costs. Read-only, no key, no sign-up.
It is our content, not a product API
Linkai Digital is a marketing, automation and AI company, not a software vendor. There is no account to create, no key to issue and no sandbox, because there is nothing here to write to. What these endpoints give you is the same information as our website, in a form a machine can read without parsing a page.
They exist because AI assistants increasingly answer questions about businesses on their behalf, and we would rather they read the facts than infer them from HTML.
Five, and an index
GET /api/index.json List the available endpoints
Discovery document: every machine-readable endpoint this site publishes, with a link to the OpenAPI specification.
GET /api/company.json Company identity and contact facts
Legal name, ABN, email, phone, Sydney address, Google Business Profile, service area and currency for Linkai Digital.
GET /api/services.json The service catalogue
Every published service, with its slug, growth pillar, description and the URL of its page.
GET /api/industries.json The industries served
Every industry with a dedicated page, with its slug, group, description and page URL.
GET /api/pricing.json Published pricing by audience
Managed package pricing for trades and clinics, audit-led offers for professional services, and the setup, GST, fair-use and minimum-term qualifiers that apply to every figure. All amounts AUD, excluding GST.
One request, no setup
curl -s https://www.linkaidigital.com.au/api/pricing.json | jq '.data.audiences[0].packages[0]'
Every response is { data, meta, links }. meta.generated_at
is the build time of the deploy that produced the file, not the time of your request:
these are static files and they are only as fresh as our last deploy.
Any page as markdown
Every indexable page on this site answers Accept: text/markdown with a
markdown version of itself, per acceptmarkdown.com.
The homepage is 97KB of HTML and about 14KB of markdown.
curl -s -H "Accept: text/markdown" https://www.linkaidigital.com.au/pricing/ Versioning and deprecation
Pin it if a change would break you
https://www.linkaidigital.com.au/api/v1/… keeps its response shape for as long as v1
is supported. https://www.linkaidigital.com.au/api/… is an unversioned alias that always
points at the current major version.
Breaking changes get a new path, not a new shape
A breaking change ships as a new major under /api/v2/….
The version you integrated against keeps working. New optional fields and new
endpoints are additive and happen in place.
Six months of warning, in the headers
Before anything is withdrawn, its responses carry Deprecation: true
and a Sunset date, plus a Link header pointing at the
replacement. Minimum six months between the first Sunset header and withdrawal.
Nothing disappears without those appearing first.
No rate limit, and no rate-limit headers
These are static files on a CDN, so there is no per-client quota to report and we do not emit RateLimit headers rather than state a limit that does not exist. Please still be reasonable. If that ever changes it will be documented here before it is enforced.
Tell us what you needed and could not get
If you are building something that needs a fact about Linkai Digital that is not in here, say so. It is a short list on purpose, not by accident.