# Ideapulley — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Get fresh SaaS startup ideas daily with detailed market analysis and scoring metrics to fuel your entrepreneurial inspiration. Browse current and historical ideas while tracking market trends to identify the most promising opportunities.

**Category:** Other | **Website:** [ideapulley.com/](https://ideapulley.com/) | **Docs:** [parse.bot/marketplace/38465fef-fc86-4f0a-b7f9-f4dbcc1929ac/ideapulley-com-api](https://parse.bot/marketplace/38465fef-fc86-4f0a-b7f9-f4dbcc1929ac/ideapulley-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-ideapulley-com-api-38465fef/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_current_idea

Get the current Idea of the Day. Returns a single SaaS idea with scoring metrics, market analysis, timing signals, community signals, and trend data. The idea refreshes daily. No parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ideapulley-com-api-38465fef/get_current_idea \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_idea_trends

Get trend data, related queries, and geographic interest data for a specific Idea of the Day. The idea_id can be obtained from get_current_idea or get_previous_ideas responses. Returns live Google Trends data, rising/top related queries, and country/city breakdowns. Some ideas may have sparse trend data depending on keyword coverage.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `idea_id` | string | Yes | Numeric ID of the idea. Obtained from get_current_idea or get_previous_ideas results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ideapulley-com-api-38465fef/get_idea_trends \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"idea_id":"<string>"}'
```

### get_previous_ideas

Get a list of previous Ideas of the Day in reverse chronological order. Each idea has the same full structure as get_current_idea. Use limit to control how many are returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of previous ideas to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ideapulley-com-api-38465fef/get_previous_ideas \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```
