GET
https://api.main.apexscore.ai
/
api
/
v1
/
reports
/
{id}
/
summary
/
topics
curl --request GET \
  --url https://api.main.apexscore.ai/api/v1/reports/{id}/summary/topics/ \
  --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",
      "name": "<string>",
      "key_focus_priority_order": -1,
      "key_focus_attitudes": "<string>",
      "dominant_sentiment": "positive",
      "themes": [
        {
          "name": "<string>",
          "description": "<string>",
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "idea_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      ],
      "category": "<string>",
      "topic": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

A UUID string identifying this report.

Query Parameters

configuration_id
string

Optional configuration id to retrieve. If not provided, the primary configuration will be used.

issued_at_after
string
issued_at_before
string
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
name
string
only_comparable
boolean

Set to true to only include Reports that are comparable at this time (which excludes sample reports and those marked for non-comparison or incomplete), and only their Configurations that are comparable and completed with a result.

only_key_focus_topics
boolean

Optional param to limit the results to only the top key focus topics.

ordering
string

Which field to use when ordering the results.

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

portfolio_id__in
string[]

Multiple values may be separated by commas.

tags
(enum<string> | null)[]
  • competitive - Competitive
  • segment - Segment
  • industry - Industry
  • none - None

Response

200 - application/json

The response is of type object.