> ## Documentation Index
> Fetch the complete documentation index at: https://memoram.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Access Requests

> Retrieve a list of all access requests initiated by the authenticated developer account.

Retrieve a list of all access requests initiated by the authenticated developer account.

### Authorization

Requires `Bearer` token authentication using your Developer JWT.


## OpenAPI

````yaml GET /access-requests
openapi: 3.0.3
info:
  title: Memoram API v1
  description: >-
    API for interacting with the Memoram platform, managing access, memories,
    and tags.
  version: 1.0.0
  contact:
    name: Memoram Support
    url: https://memoram.app
    email: support@memoram.app
servers:
  - url: https://api.memoram.app/api/v1
    description: Production Server
security: []
tags:
  - name: Access Management
    description: >-
      Endpoints for obtaining authentication tokens and managing access requests
      to user memories.
  - name: Memory Management
    description: >-
      Endpoints for creating, retrieving, updating, and deleting user memory
      blobs.
  - name: Memory Tag Management
    description: Endpoints for retrieving memory tags.
paths:
  /access-requests:
    get:
      tags:
        - Access Management
      summary: Get Access Requests
      description: >-
        Retrieve a list of all access requests initiated by the authenticated
        developer account.
      responses:
        '200':
          description: List of access requests.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessRequestListResponse'
        '401':
          description: Unauthorized - Invalid or expired JWT.
      security:
        - bearerAuth: []
components:
  schemas:
    AccessRequestListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/AccessRequest'
        total:
          type: integer
          description: Total number of access requests.
    AccessRequest:
      type: object
      properties:
        id:
          type: string
          description: Unique ID of the access request.
        status:
          type: string
          enum:
            - pending
            - approved
            - rejected
            - revoked
          description: The current status of the access request.
        reason:
          type: string
          description: The reason provided when creating the request.
        memoryKey:
          type: string
          description: The user's memory key associated with this request.
        user_id:
          type: string
          format: uuid
          description: >-
            The unique ID of the user this request pertains to (available once
            linked).
        aiConnectorId:
          type: string
          description: >-
            The ID of the AI Connector (developer application) that made the
            request.
        createdAt:
          type: string
          format: date-time
          description: Timestamp when the request was created.
        updatedAt:
          type: string
          format: date-time
          description: >-
            Timestamp when the request was last updated (e.g.,
            approved/rejected).
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained via `/auth/token` endpoint.

````