Help & Support

GraphQL

Get started with the Lens GraphQL API.

The Lens API utilizes GraphQL, a query language for APIs that allows clients to precisely request the data they need, leading to more efficient data retrieval. GraphQL queries are executed using a type system defined for your data. It is written in rust so it is blazing fast.

Environments

The API links below act as API endpoints as well as playgrounds for testing queries.

NetworkURL
Lens API Mainnet (coming soon)https://api.lens.xyz/graphql
Lens API Testnethttps://api.testnet.lens.xyz/graphql

GraphQL Clients

Below are examples of how to interact with the Lens API using different GraphQL clients.

The URQL client is a lightweight and flexible GraphQL client that can be used in both web and mobile applications.

urql.ts
import { gql, Client, cacheExchange, fetchExchange } from "urql";
const ENDPOINT = "https://api.lens.xyz/graphql";
const client = new Client({  url: ENDPOINT,  exchanges: [cacheExchange, fetchExchange],});
const result = await client.query(gql`  query {    posts(request: { pageSize: TEN }) {      items {        id        author {          username {            value          }        }        metadata {          ... on TextOnlyMetadata {            content          }        }      }      pageInfo {        prev        next      }    }  }`);
console.log(result);