User
Profile, API keys, preferences
/graphql/user
Click to view queries and mutations
Explore all available schemas, queries and mutations. Each endpoint is organized by domain — use GraphiQL to try them interactively.
GraphQL is a query language for APIs. Unlike REST, you send a single request to one endpoint and specify exactly what data you need. The response matches the shape of your query. This reduces over-fetching and lets you get related data in one round trip.
The API is split into schemas by domain (user, company, order). Each schema has its own endpoint:
POST /graphql/user
POST /graphql/company
POST /graphql/order
Send a POST with JSON body. Most endpoints require authentication via the X-API-KEY header.
Headers:
Content-Type: application/json
X-API-KEY: your_api_key
Body:
{
"query": "query { me { id email } }",
"variables": {}
}
query {
myCompanies {
id
name
}
}
mutation UpdateUser($input: UpdateUserInput!) {
updateUser(input: $input) {
id
email
}
}
// Variables:
{ "input": { "name": "John" } }
user schema for programmatic access.Profile, API keys, preferences
/graphql/user
Click to view queries and mutations
Companies, employees, partners, vehicles
/graphql/company
Click to view queries and mutations
Orders, auctions, templates, forms
/graphql/order
Click to view queries and mutations
Need help? Open GraphiQL to explore the schema and run queries.
Open GraphiQL