Skip to main content
This guide gets you from zero to a successful /v1/ API call in a few minutes. You need a Unix-like shell with curl installed.
1

Request an API key

Visit portal.api.trassets.ai and create an account. Generate an API key and store it securely. The plaintext key is shown only once.
2

Make your first request

Set your key as an environment variable and query technical_objects — one of the tables currently reviewed and live under /v1/.
The API returns a JSON array of objects. A typical response looks like this:
/v1/ only exposes a table once it has passed schema review — see the v1 Property data model for the full technical_objects field reference. Other tables are added incrementally; check the API Reference tab for what’s currently live.
Success! You have authenticated and fetched your first row of data from a /v1/ endpoint.
3

Next steps