Search documentation

Search across all documentation pages

Get API Key

GraphQL is for Nexar migration only

Use the GraphQL API only as a drop-in replacement for Nexar's GraphQL when migrating existing integrations. For new projects and full platform capabilities, use the REST API— it's the actively maintained, modern interface.
Queries

Manufacturers

Page through or filter manufacturers by ID or slug from canonical catalog nodes.

List manufacturer companies from canonical catalog nodes. supManufacturers is free — no part_match billing (abuse-tracked only).

Omit both ids and slugs to page through all manufacturers. When both are non-empty, manufacturers matching either filter are returned.

Arguments

ParameterTypeRequiredDescription
ids
[String!]OptionalFilter by canonical manufacturer ID
slugs
[String!]OptionalMatch name-derived slug or canonical slug
start
IntOptionalOffset into the result set
limit
IntOptionalPage size (clamped to 1–200)
minNumberOfActivePartsInt
IntOptionalReserved for API compatibility; no effect

Example

GRAPHQL
1{
2 supManufacturers(start: 0, limit: 50, slugs: ["texas-instruments"]) {
3 id
4 name
5 slug
6 homepageUrl
7 isDistributorApi
8 }
9}

Next