Skip to main content

Hypermedia-Driven API

The GreetIncs API implements HATEOAS (Hypermedia as the Engine of Application State). Every response includes a links array that tells you what actions are available and where related resources live.

Response Structure

All responses follow this structure:

Common Relationships

Benefits

No URL Hardcoding

Follow links instead of constructing URLs manually.

Discoverable Actions

The API tells you what you can do next.

Future-Proof

URL changes won’t break your integration.

Self-Documenting

Links include titles explaining each action.

Pagination Example

List endpoints return pagination links:
Follow the next link to get the next page—no need to calculate offsets yourself.