Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/tindie-order-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Tindie Order API
version: v1
description: 'Tindie''s public v1 REST API (Django Tastypie). It exposes three resources: `product` (public catalog listings for a store), and `order` and `orderitem` (a seller''s own orders, authenticated). Responses are JSON using the standard Tastypie envelope (`meta` pagination + `objects` array). The `product` resource schema is public; `order` and `orderitem` require API-key authentication and return 401 without credentials.'
contact:
name: Tindie Support
url: https://www.tindie.com/help/
servers:
- url: https://www.tindie.com/api/v1
description: Production
security: []
tags:
- name: order
description: A seller's orders (authenticated).
paths:
/order/:
get:
tags:
- order
operationId: listOrders
summary: List orders
description: List the authenticated seller's orders. Requires API-key authentication (Tastypie ApiKeyAuthentication). Returns 401 without valid credentials. Field schema is only available to authenticated callers via `/order/schema/`.
security:
- apiKeyQuery: []
usernameQuery: []
parameters:
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/format'
responses:
'200':
description: A paginated list of orders (Tastypie envelope).
content:
application/json:
schema:
$ref: '#/components/schemas/ListEnvelope'
'401':
$ref: '#/components/responses/Unauthorized'
/order/{id}/:
get:
tags:
- order
operationId: getOrder
summary: Get an order
description: Retrieve one of the authenticated seller's orders by id.
security:
- apiKeyQuery: []
usernameQuery: []
parameters:
- name: id
in: path
required: true
schema:
type: integer
- $ref: '#/components/parameters/format'
responses:
'200':
description: The order.
content:
application/json:
schema:
type: object
'401':
$ref: '#/components/responses/Unauthorized'
'404':
$ref: '#/components/responses/NotFound'
components:
parameters:
offset:
name: offset
in: query
description: Result offset for pagination.
required: false
schema:
type: integer
default: 0
limit:
name: limit
in: query
description: Page size (Tastypie; default 20). Use 0 for all.
required: false
schema:
type: integer
default: 20
format:
name: format
in: query
description: Response serialization format (e.g. `json`).
required: false
schema:
type: string
default: json
schemas:
TastypieError:
type: object
description: Tastypie error envelope.
properties:
error_message:
type: string
traceback:
type: string
ListEnvelope:
type: object
description: Standard Tastypie list envelope. `objects` field schema for order / orderitem is only exposed to authenticated callers.
properties:
meta:
$ref: '#/components/schemas/ListMeta'
objects:
type: array
items:
type: object
ListMeta:
type: object
description: Tastypie pagination metadata.
properties:
limit:
type: integer
example: 20
offset:
type: integer
example: 0
total_count:
type: integer
next:
type:
- string
- 'null'
previous:
type:
- string
- 'null'
responses:
NotFound:
description: Resource not found.
content:
application/json:
schema:
$ref: '#/components/schemas/TastypieError'
Unauthorized:
description: Missing or invalid API-key credentials.
content:
application/json:
schema:
$ref: '#/components/schemas/TastypieError'
securitySchemes:
apiKeyQuery:
type: apiKey
in: query
name: api_key
description: 'Tindie API key (Tastypie ApiKeyAuthentication). Passed as the `api_key` query parameter alongside `username`, or as the header `Authorization: ApiKey <username>:<api_key>`.'
usernameQuery:
type: apiKey
in: query
name: username
description: The Tindie account username that owns the API key.