GET
https://api.main.apexscore.ai
/
api
/
v1
/
attitudes
curl --request GET \
  --url https://api.main.apexscore.ai/api/v1/attitudes/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "keyword": "<string>",
      "description": "<string>",
      "explanation": "<string>",
      "content_icon_url": "<string>",
      "content_recommendations": [
        {
          "header": "<string>",
          "subtext": "<string>",
          "example": "<string>",
          "why": "<string>"
        }
      ],
      "content_studies": [
        {
          "title": "<string>",
          "link": "<string>"
        }
      ],
      "classification": "FE",
      "ppp_classification": "NA",
      "meta": "<any>",
      "mona_version": {
        "id": 123,
        "name": "<string>",
        "audience": "<string>",
        "audience_type": 0,
        "sequence": -1
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

mona_version__audience_type
enum<integer>
  • 0 - None
  • 1 - Customers
  • 2 - Employees
  • 3 - Donors
  • 4 - Media
  • 5 - Gathering 2024 Lecturees
Available options:
0,
1,
2,
3,
4,
5
mona_version__id
integer
mona_version__sequence
integer
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Response

200 - application/json

The response is of type object.