# Get matched opportunities for developer

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /opportunities_matching:
    get:
      summary: Get matched opportunities for developer
      deprecated: false
      description: Returns opportunities ranked by match score based on developer's profile
      tags:
        - Opportunities
        - Opportunities
      parameters:
        - name: developer_id
          in: query
          description: ''
          required: true
          schema:
            type: string
            format: uuid
        - name: type
          in: query
          description: ''
          required: false
          schema:
            type: string
        - name: min_match_score
          in: query
          description: ''
          required: false
          schema:
            type: number
            default: 50
        - name: limit
          in: query
          description: ''
          required: false
          schema:
            type: integer
            default: 25
      responses:
        '200':
          description: Matched opportunities
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MatchingResponse'
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: Opportunities
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/1150986/apis/api-25474685-run
components:
  schemas:
    MatchingResponse:
      type: object
      properties:
        success:
          type: boolean
        developer_id:
          type: string
        developer_name:
          type: string
        total_matches:
          type: integer
        min_match_score:
          type: number
        matches:
          type: array
          items:
            type: object
            x-apidog-orders: []
            properties: {}
            x-apidog-ignore-properties: []
      x-apidog-orders:
        - success
        - developer_id
        - developer_name
        - total_matches
        - min_match_score
        - matches
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
