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

# Project Search



## OpenAPI

````yaml openapi.json GET /gateway/v1/search/project
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/search/project:
    get:
      tags:
        - Search
      summary: Project Search
      description: |-
        Searches crypto projects by keyword.

        **Included fields:** name, description, chains, logo.
      operationId: search-project
      parameters:
        - description: >-
            Search keyword — project name or ticker like `uniswap`, `bitcoin`,
            or `ETH`
          explode: false
          in: query
          name: q
          required: true
          schema:
            description: >-
              Search keyword — project name or ticker like `uniswap`, `bitcoin`,
              or `ETH`
            examples:
              - bitcoin
            maxLength: 100
            type: string
        - description: Results per page
          explode: false
          in: query
          name: limit
          schema:
            default: 20
            description: Results per page
            examples:
              - 20
            format: int64
            maximum: 100
            minimum: 1
            type: integer
        - description: Pagination offset
          explode: false
          in: query
          name: offset
          schema:
            default: 0
            description: Pagination offset
            examples:
              - 0
            format: int64
            minimum: 0
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseProjectSearchItem'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseProjectSearchItem:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseProjectSearchItem.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/ProjectSearchItem'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    ProjectSearchItem:
      additionalProperties: false
      properties:
        chains:
          description: Chains the project operates on
          items:
            type: string
          type:
            - array
            - 'null'
        description:
          description: Short description of the project
          type: string
        id:
          description: >-
            Surf project UUID — pass as 'id' parameter to /project/detail,
            /project/events, or /project/defi/metrics for exact lookup. Prefer
            over 'q' (fuzzy name search).
          type: string
        logo_url:
          description: Project logo image URL
          type: string
        name:
          description: Project name
          type: string
        slug:
          description: Project slug for URL construction
          type: string
        symbol:
          description: Primary token symbol like `BTC` or `ETH`
          type: string
        tags:
          description: Project category tags
          items:
            type: string
          type:
            - array
            - 'null'
        tokens:
          description: Associated tokens
          items:
            $ref: '#/components/schemas/TokenSearchItem'
          type:
            - array
            - 'null'
      required:
        - id
        - name
      type: object
    OffsetMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object
    TokenSearchItem:
      additionalProperties: false
      properties:
        id:
          description: Token identifier
          type: string
        image:
          description: Token logo image URL
          type: string
        name:
          description: Token name
          type: string
        symbol:
          description: Token symbol
          type: string
      required:
        - id
        - name
        - symbol
      type: object

````