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

# Drophunting Activity Profile

> Full profile of a single drophunting activity.<br/><br/>Available from&#58; <Badge color="orange">Pro</Badge><br/>Cost&#58; <Badge color="surface">1 credit per request</Badge>

<Tip>
  The task list is served separately via [/drophunting/:id/tasks](/api-reference/drophunting/drophunting-tasks).
</Tip>


## OpenAPI

````yaml https://api.cryptorank.io/v3/documentation-json get /v3/drophunting/{id}
openapi: 3.0.0
info:
  title: Cryptorank API V3
  description: >
    # Overview


    Cryptorank Public API v3 — comprehensive cryptocurrency data for B2B clients
    and partners.


    Useful Links:

    - [API Plans](https://cryptorank.io/public-api)

    - [Dashboard](https://cryptorank.io/public-api/dashboard)


    # Getting Started


    Primary Server URL:
    [https://api.cryptorank.io/v3/](https://api.cryptorank.io/v3/)


    **Authentication**


    Generate an API key in the
    [dashboard](https://cryptorank.io/public-api/dashboard) and pass it in the
    `X-Api-Key` header.


    Keep your keys secret — never commit them to public repositories or expose
    them in client-side code.
  version: 3.0.0
  contact:
    name: Cryptorank Team
    url: https://cryptorank.io
    email: info@cryptorank.io
servers:
  - url: https://api.cryptorank.io
security: []
tags: []
paths:
  /v3/drophunting/{id}:
    get:
      tags:
        - Drophunting
      summary: Drophunting Activity Profile
      description: >-
        **Description**


        Full profile of a single drophunting activity.


        > **Tip:** The task list is served separately via
        [/drophunting/:id/tasks](/api-reference/drophunting/drophunting-tasks).


        **Access**

        - Available from: **Pro**

        - Cost: 1 credit per request
      operationId: DrophuntingController_getById
      parameters:
        - name: id
          required: true
          in: path
          description: Activity ID.
          schema:
            example: 42
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - status
                properties:
                  data:
                    $ref: '#/components/schemas/DrophuntingByIdDto'
                  status:
                    $ref: '#/components/schemas/ResponseStatusDto'
        '400':
          description: Request validation failed
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - VALIDATION_ERROR
                        example: VALIDATION_ERROR
                      message:
                        type: string
                        example: Validation failed
                      status:
                        type: number
                        example: 400
        '401':
          description: API key is missing or invalid
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - API_KEY_MISSING
                          - API_KEY_INVALID
                        example: API_KEY_MISSING
                      message:
                        type: string
                        example: API key is missing
                      status:
                        type: number
                        example: 401
        '403':
          description: >-
            No active subscription, the endpoint is not available in your plan,
            or the request goes beyond what your plan allows
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - NO_ACTIVE_SUBSCRIPTION
                          - ENDPOINT_NOT_AVAILABLE
                          - PLAN_LIMIT_EXCEEDED
                        example: NO_ACTIVE_SUBSCRIPTION
                      message:
                        type: string
                        example: No active subscription found
                      status:
                        type: number
                        example: 403
        '404':
          description: Drophunting activity not found
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - NOT_FOUND
                        example: NOT_FOUND
                      message:
                        type: string
                        example: Resource not found
                      status:
                        type: number
                        example: 404
        '429':
          description: Rate limit or credit limit exceeded
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - RATE_LIMIT_EXCEEDED
                          - DAILY_CREDITS_EXCEEDED
                          - MONTHLY_CREDITS_EXCEEDED
                        example: RATE_LIMIT_EXCEEDED
                      message:
                        type: string
                        example: Rate limit exceeded
                      status:
                        type: number
                        example: 429
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                      - status
                    properties:
                      code:
                        type: string
                        enum:
                          - INTERNAL_ERROR
                        example: INTERNAL_ERROR
                      message:
                        type: string
                        example: Internal server error
                      status:
                        type: number
                        example: 500
      security:
        - X-Api-Key: []
components:
  schemas:
    DrophuntingByIdDto:
      type: object
      properties:
        id:
          type: number
          example: 42
          description: Unique activity identifier.
        currencyId:
          type: number
          example: 28
          description: Unique currency identifier.
        name:
          type: string
          example: EigenLayer
          description: Display name.
        symbol:
          type: string
          example: EIGEN
          nullable: true
          description: Native token symbol (e.g. 'ETH'). Null when unavailable.
        slug:
          type: string
          example: eigenlayer
          description: URL-friendly entity slug.
        imageUrl:
          type: string
          example: >-
            https://images.cryptorank.io/coins/150x150.eigenlayer1524754012028.png
          nullable: true
          description: Logo image URL, 150×150. Null when no image is available.
        rewardType:
          type: string
          enum:
            - airdrop
            - ambassador
            - fee
            - nft
            - points
            - role
            - spaceships
            - whitelist
          description: Reward type.
        activityStatus:
          type: string
          enum:
            - POTENTIAL
            - CONFIRMED
            - VERIFICATION
            - REWARD_AVAILABLE
            - DISTRIBUTED
            - SNAPSHOT
            - INACTIVE
          description: Current activity status.
        lastStatusUpdate:
          type: string
          example: '2026-05-15T12:34:56.000Z'
          description: Last status update, ISO 8601 UTC.
        rewardDate:
          type: string
          nullable: true
          example: '2026-09-30T00:00:00.000Z'
          description: >-
            Expected reward distribution date, ISO 8601 UTC. May be coarse — see
            `rewardDatePrecision`.
        links:
          description: Reward claim and eligibility-verify links.
          allOf:
            - $ref: '#/components/schemas/DrophuntingLinksDto'
        hasFundingRounds:
          type: boolean
          description: True when the underlying coin has disclosed funding rounds.
        estimatedCost:
          type: string
          nullable: true
          example: '0'
          description: >-
            Total estimated cost across all tasks, USD. Null when no tasks have
            a declared cost.
        estimatedTimeMinutes:
          type: number
          nullable: true
          example: 45
          description: >-
            Total estimated time across all tasks, minutes. Null when no tasks
            have a declared time.
        taskTypes:
          description: Distinct task types present in this activity.
          type: array
          items:
            $ref: '#/components/schemas/DrophuntingTaskTypeDto'
        totalRaised:
          type: string
          nullable: true
          example: '125000000'
          description: >-
            Total airdrop rewards value in USD, across funding rounds and
            crowdsales.
        description:
          type: string
          nullable: true
          description: Activity description.
        rewardDatePrecision:
          type: string
          nullable: true
          enum:
            - YEAR
            - QUARTER
            - MONTH
            - DATE
            - DATE_TIME
          description: >-
            Granularity of `rewardDate`. `YEAR`/`QUARTER`/`MONTH` mean only that
            part of the timestamp is meaningful.
        hasBackers:
          type: boolean
          description: >-
            True when the underlying coin has at least one disclosed backer (VC
            fund from a funding round).
        hasTasks:
          type: boolean
          description: True when at least one task is available.
      required:
        - id
        - currencyId
        - name
        - symbol
        - slug
        - imageUrl
        - rewardType
        - activityStatus
        - lastStatusUpdate
        - rewardDate
        - links
        - hasFundingRounds
        - estimatedCost
        - estimatedTimeMinutes
        - taskTypes
        - totalRaised
        - description
        - rewardDatePrecision
        - hasBackers
        - hasTasks
    ResponseStatusDto:
      type: object
      properties:
        usedCredits:
          type: number
          example: 1
          description: Credits charged for this request
        timestamp:
          type: number
          example: 1780000000000
          description: Server time of the response. Unix timestamp in milliseconds
      required:
        - usedCredits
        - timestamp
    DrophuntingLinksDto:
      type: object
      properties:
        claim:
          type: string
          nullable: true
          description: URL where users claim the reward.
        verify:
          type: string
          nullable: true
          description: URL where users verify eligibility.
      required:
        - claim
        - verify
    DrophuntingTaskTypeDto:
      type: object
      properties:
        id:
          type: number
          example: 1
          description: Unique numeric identifier.
        slug:
          type: string
          example: testnet
          description: URL-friendly entity slug.
        name:
          type: string
          example: Testnet
          description: Display name.
      required:
        - id
        - slug
        - name
  securitySchemes:
    X-Api-Key:
      name: X-Api-Key
      type: apiKey
      in: header

````