Skip to main content
Use this endpoint to retrieve a paginated list of all characters that have been submitted for staff review and are currently in the pending_approval state. This is the primary queue staff members work through when processing character applications. Results are paginated — use the page and limit query parameters to navigate through the list.
This endpoint is restricted to users who hold at least one of the following permissions: MODERATOR_CHIEF, ADMINISTRATOR, or DEVELOPER. Requests from accounts without these roles are rejected with 403.

Endpoint

Query Parameters

number
The page number to retrieve. Must be a positive integer. Defaults to 1.
number
The number of characters to return per page. Must be between 1 and 50. Defaults to 20.

Response

A successful 200 response returns the characters on the requested page along with pagination metadata:
array
An array of character objects currently awaiting review. Each object contains the full character data as returned by getApiCharacterData(). Returns an empty array if there are no pending characters on the requested page.
object
Pagination information for the result set.

Example Request

Example Response

Error Responses

Rate limiting applies to this endpoint. You can call it at most 10 times per minute. Use the meta.totalPages value to determine whether you need to fetch additional pages rather than polling repeatedly.