nexus_get_mod_endorsers
Retrieve a paginated list of users who endorsed a mod on Nexus Mods, including member details and pagination cursors. Use this to see who endorsed a specific mod.
Instructions
List users who endorsed a mod via v2 GraphQL.
Backed by the v2 GraphQL API, which does NOT consume the v1 REST rate-limit quota. Resolves the mod's uid first (two-step, both cached).
Returns: JSON {pageInfo: {endCursor, hasNextPage}, nodes: [{memberId, name, avatar, modCount, kudos, ...}]}. Paginate with after_cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| first | No | Page size (cursor pagination). | |
| mod_id | Yes | Numeric mod ID. | |
| domain_name | Yes | Nexus Mods game domain (lowercase URL slug), e.g. 'forzahorizon6', 'skyrimse'. NOT the display name. | |
| after_cursor | No | Cursor from a previous page's pageInfo.endCursor. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |