🏡️API Guide

The complete guide to using Famewall API programmatically

Famewall API v1 β€” Quickstart (2 minutes)

Use the Famewall API to add and manage testimonials programmatically from your tools.

1) Get your API Key

  1. Open the Famewall app

  2. Go to API in the sidebar

  3. Click Generate API Key

  4. Copy the key (shown once)

Keep this key secret.

2) Base URL

Your API base URL:

https://api.famewall.io/v1

All requests require the header:

Authorization: Bearer <YOUR_API_KEY>

3) List your walls

Request

Example (curl)

Response

4) Fetch testimonials from a wall

Request

Example (curl)

Response (example)

5) Add a testimonial to a wall (text only)

Request

Body

Example (curl)

Response

6) Get collected testimonials

Request

Example (curl)

Response (example)

Pagination

All list endpoints support:

  • limit (default 20, max 50)

  • cursor (use next_cursor from the previous response)

Example

Troubleshooting

  • 401 Unauthorized: Invalid API key or not on Standard plan.

  • 400 Invalid request: Missing or invalid parameters.

  • 429: Rate limit exceeded (retry after a minute).

If you’re blocked, regenerate your API key in the Famewall app and try again.

Last updated