---
title: "Retrieve an access request's score"
url: "https://nexora.apim.eu/apis/access-requests/versions/85552175-ec5d-4510-b24d-c293a66d9945/operations/getRequestScore"
---

> Full API specification: https://nexora.apim.eu/apis/access-requests/versions/85552175-ec5d-4510-b24d-c293a66d9945.md

# Retrieve an access request's score

`GET` `/requests/{requestId}/score`

Operation ID: `getRequestScore`

Shows how well the capability profile and the agent match - with the individual criteria, so the rating stays traceable.

## Path parameters

- `requestId` (string, required)

## Responses

- `200` - Score

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Access & Onboarding Requests
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
paths:
  /requests/{requestId}/score:
    parameters:
      - name: requestId
        in: path
        required: true
        schema:
          type: string
          example: req_71ab
    get:
      tags:
        - Matching
      summary: Retrieve an access request's score
      description: |
        Shows how well the capability profile and the agent match - with the
        individual criteria, so the rating stays traceable.
      operationId: getRequestScore
      responses:
        "200":
          description: Score
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Score"
              example:
                request_id: req_71ab
                agent_id: agt_8f2c1a
                points: 82
                rating: high
                criteria:
                  - criterion: budget_fit
                    met: true
                    weight: 30
                  - criterion: integration_compatibility
                    met: true
                    weight: 25
                  - criterion: business_unit_match
                    met: true
                    weight: 20
                  - criterion: compliance_alignment
                    met: false
                    weight: 25
security:
  - apiKey: []
components:
  schemas:
    Score:
      type: object
      properties:
        request_id:
          type: string
          example: req_71ab
        agent_id:
          type: string
          example: agt_8f2c1a
        points:
          type: integer
          minimum: 0
          maximum: 100
          example: 82
        rating:
          type: string
          enum:
            - low
            - medium
            - high
        criteria:
          type: array
          items:
            $ref: "#/components/schemas/Criterion"
    Criterion:
      type: object
      properties:
        criterion:
          type: string
          example: budget_fit
        met:
          type: boolean
          example: true
        weight:
          type: integer
          example: 30
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: |
        Every call carries an API key in the `apikey` header. You generate the
        key in the Nexora AI portal under "My Apps"; it's shown exactly once.

        Each key has the scopes it's allowed to use attached to it. If one is
        missing, the API responds with `403` and `code: "scope_missing"`; the
        missing scope is in `details[].field`.
```
