Skip to main content
GET
List rubrics
The list holds only rubrics created with the same API user as your access token. Results are newest first, and every rubric arrives with its full rubricCriteria array, so a page of rubrics can be a large response.

Paging

The pageSize field in the response always reports 10, even when you send a different page_size. Count the items in data if you need the real page size.

Next step

Get a rubric

Fetch one rubric by ID once you know which one you want.

Authorizations

Authorization
string
header
required

Access token from Get an access token.

Query Parameters

page
integer
default:1

Page number, starting at 1. A page past the end returns 404.

Required range: x >= 1
page_size
integer
default:10

Rubrics per page, up to 1000. The pageSize field in the response always reports 10, even when you change this.

Required range: 1 <= x <= 1000

Response

One page of rubrics.

count
integer

Total number of rubrics on your API user.

Example:

12

pageSize
integer

Always 10, even when you send a different page_size. Count the items in data for the real page size.

Example:

10

showing
string

Which page you are on.

Example:

"Page 1 of 2"

next
string<uri> | null

URL of the next page, or null on the last page.

Example:

"https://api.crazygoldfish.com/rubrics/v1/rubric/?page=2"

previous
string<uri> | null

URL of the previous page, or null on the first page.

Example:

null

data
object[]

The rubrics on this page, newest first.