Skip to main content
POST
/
api
/
l2beat
/
projects
/
search
/l2beat/projects/search
curl --request POST \
  --url https://api.anysite.io/api/l2beat/projects/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "<string>",
  "type": "<string>",
  "category": "Optimistic Rollup",
  "stage": "Stage 0",
  "host_chain": "<string>",
  "provider": "<string>",
  "purpose": "<string>",
  "vm": "EVM",
  "da_layer": "Ethereum",
  "archived": false
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "L2beatProject",
    "alias": "<string>",
    "type": "<string>",
    "host_chain": "<string>",
    "category": "<string>",
    "stage": "<string>",
    "providers": [],
    "purposes": [],
    "is_archived": false,
    "is_under_review": false,
    "badges": [],
    "risks": [],
    "tvs": {
      "@type": "L2beatProjectTvs",
      "total": 123,
      "native": 123,
      "canonical": 123,
      "external": 123,
      "ether": 123,
      "stablecoin": 123,
      "btc": 123,
      "other": 123,
      "rwa_restricted": 123,
      "rwa_public": 123,
      "associated": 123,
      "change_7d": 123,
      "associated_tokens": []
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
query
string | null

Filter projects by name (case-insensitive substring)

type
string | null

Filter by project type, e.g. 'layer2' or 'layer3'

category
string | null

Filter by exact rollup category

Example:

"Optimistic Rollup"

stage
string | null

Filter by maturity stage

Example:

"Stage 0"

host_chain
string | null

Filter by host chain (case-insensitive)

provider
string | null

Filter by technology provider/stack (case-insensitive)

purpose
string | null

Filter by project purpose (case-insensitive)

vm
string | null

Filter by virtual machine (case-insensitive)

Example:

"EVM"

da_layer
string | null

Filter by data availability layer (case-insensitive substring)

Example:

"Ethereum"

archived
boolean
default:false

Return archived (sunset / no longer operating) projects instead of active ones

Response

Successful Response

id
string
required
name
string
required
@type
string
default:L2beatProject
alias
string | null
type
string | null
host_chain
string | null
category
string | null
stage
string | null
providers
string[]
purposes
string[]
is_archived
boolean
default:false
is_under_review
boolean
default:false
badges
object[]
risks
object[]
tvs
object