Workspaces & keys
Generate the credentials your code needs.
How credentials work
The GeoDynamics REST API uses HTTP Basic authentication. The username is the
pair user|company (your IntelliTracer login joined by a pipe with the
company short code), and the password is your IntelliTracer password. The full
string is base64-encoded and sent as Authorization: Basic <encoded>.
For long-running access, create a dedicated service user inside IntelliTracer and use those credentials below. That keeps personal accounts out of integrations and survives password rotations on human accounts.
Encode credentials
Fill in the three fields. Everything is encoded in your browser; the values never reach our servers.
Use it in a request
Once you have the header, every REST call uses the same shape:
curl https://api.geodynamics.dev/v1/clockings \ -H "Authorization: Basic <your encoded value>"
Need to rotate? Just re-encode with the new password. The previous header stops working as soon as the old password is invalidated in IntelliTracer.