Skip to main content
This guide gets you from zero to a successful 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 the real-estate objects endpoint with a small page size.
The API returns a JSON array of objects. A typical response looks like this:
The exact set of fields depends on your customer schema — columns are read dynamically from your database. See the Field Glossary for fields that appear across multiple endpoints.
Success! You have authenticated and fetched your first row of real-estate data.
3

Next steps