Skip to main content
GET
/
gateway
/
v1
/
social
/
mindshare
Project Mindshare Time Series
curl --request GET \
  --url https://api.ask.surf/gateway/v1/social/mindshare
{
  "data": [
    {
      "timestamp": 123,
      "value": 123
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "$schema": "<string>"
}

Query Parameters

q
string
required

Entity name to resolve like uniswap, ethereum, or aave

Example:

"uniswap"

interval
enum<string>
required

Time aggregation interval. Can be 5m, 1h, 1d, or 7d.

Available options:
5m,
1h,
1d,
7d
Example:

"1d"

from
string

Start timestamp. Accepts Unix seconds (1704067200) or date string (2024-01-01)

Example:

"1704067200"

to
string

End timestamp. Accepts Unix seconds (1706745600) or date string (2024-02-01)

Example:

"1706745600"

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/DataResponseSocialMindsharePoint.json"