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

# Get awesome resources

> Fetches resources from Awesome Sui, Awesome Walrus, and Awesome Seal lists.



## OpenAPI

````yaml get /api/v1/projects/resources
openapi: 3.0.0
info:
  title: YapCoder API
  description: API for YapCoder - Developer Reputation and Analytics Platform
  version: 1.0.0
servers:
  - url: https://api.yapcoder.com
    description: Local development server
security:
  - bearerAuth: []
  - apiKeyAuth: []
tags:
  - name: healthchecks
    description: Service health and readiness checks
  - name: developers
    description: Developer management and analytics
  - name: projects
    description: Project analytics and repository details
  - name: sui
    description: Sui ecosystem packages and data
paths:
  /api/v1/projects/resources:
    get:
      tags:
        - projects
      summary: Get awesome resources
      description: >-
        Fetches resources from Awesome Sui, Awesome Walrus, and Awesome Seal
        lists.
      operationId: GetResources
      responses:
        '200':
          description: List of resources
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourcesResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ResourcesResponse:
      type: object
      properties:
        sui:
          type: array
          items:
            $ref: '#/components/schemas/Resource'
        walrus:
          type: array
          items:
            $ref: '#/components/schemas/Resource'
        seal:
          type: array
          items:
            $ref: '#/components/schemas/Resource'
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
    Resource:
      type: object
      properties:
        category:
          type: string
        name:
          type: string
        description:
          type: string
        link:
          type: string
        image_url:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````